diff options
| author | ThePrimeAgain <theprimeagain@theprimeagain.com> | 2026-01-14 19:07:01 -0700 |
|---|---|---|
| committer | ThePrimeAgain <theprimeagain@theprimeagain.com> | 2026-01-14 19:07:01 -0700 |
| commit | fc4ca85249de2f0311a62c6f17442996f8f79034 (patch) | |
| tree | d7d366ecd5404aa2eeffdeefcfb801682ed7de7e /scratch | |
| parent | 75fd8aa73919e26a2b33871a78bae34e604ba558 (diff) | |
| download | a4-fc4ca85249de2f0311a62c6f17442996f8f79034.tar.xz a4-fc4ca85249de2f0311a62c6f17442996f8f79034.zip | |
window: ordering now works along with text and placement
Diffstat (limited to 'scratch')
| -rw-r--r-- | scratch/refresh.lua | 10 |
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() |
