summaryrefslogtreecommitdiff
path: root/scratch/refresh.lua
diff options
context:
space:
mode:
authorThePrimeAgain <theprimeagain@theprimeagain.com>2026-01-14 19:07:01 -0700
committerThePrimeAgain <theprimeagain@theprimeagain.com>2026-01-14 19:07:01 -0700
commitfc4ca85249de2f0311a62c6f17442996f8f79034 (patch)
treed7d366ecd5404aa2eeffdeefcfb801682ed7de7e /scratch/refresh.lua
parent75fd8aa73919e26a2b33871a78bae34e604ba558 (diff)
downloada4-fc4ca85249de2f0311a62c6f17442996f8f79034.tar.xz
a4-fc4ca85249de2f0311a62c6f17442996f8f79034.zip
window: ordering now works along with text and placement
Diffstat (limited to 'scratch/refresh.lua')
-rw-r--r--scratch/refresh.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/scratch/refresh.lua b/scratch/refresh.lua
index 3e07ad7..8c34a9c 100644
--- a/scratch/refresh.lua
+++ b/scratch/refresh.lua
@@ -2,10 +2,10 @@ local Window = require("99.window")
Window.clear_active_popups()
R("99")
-function test()
- local Window = require("99.window")
- Window.capture_input(function(input)
- print(input)
- end, {})
+local function test()
+ Window = require("99.window")
+ Window.capture_input(function(input)
+ print(input)
+ end, {})
end
test()