diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-08-23 22:39:30 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-08-23 22:39:30 -0400 |
commit | e6d8379744b08f9a52af6734ba1f0e1b50fb5906 (patch) | |
tree | c882e265b9f060bfb24ce21f98b613b06305b907 /indra/newview/scripts/lua/test_toolbars.lua | |
parent | 2e815acb529159f5b6f0a4365a2eaf64d35330cc (diff) |
Massage results from UI.popup() for ease of use.
In particular, where the raw leap.request().response call would return
{OK_okcancelbuttons=true}, just return the string 'OK' or 'Cancel'.
Update existing consumer scripts.
Diffstat (limited to 'indra/newview/scripts/lua/test_toolbars.lua')
-rw-r--r-- | indra/newview/scripts/lua/test_toolbars.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/scripts/lua/test_toolbars.lua b/indra/newview/scripts/lua/test_toolbars.lua index 9a832c5644..7683fca8a3 100644 --- a/indra/newview/scripts/lua/test_toolbars.lua +++ b/indra/newview/scripts/lua/test_toolbars.lua @@ -1,13 +1,11 @@ -popup = require 'popup' UI = require 'UI' -local OK = 'OK_okcancelbuttons' local BUTTONS = UI.getToolbarBtnNames() local TOOLBARS = {'left','right','bottom'} -- Clear the toolbars and then add the toolbar buttons to the random toolbar -response = popup:alertYesCancel('Toolbars will be randomly reshuffled. Proceed?') -if next(response) == OK then +response = UI.popup:alertYesCancel('Toolbars will be randomly reshuffled. Proceed?') +if response == 'OK' then UI.clearAllToolbars() math.randomseed(os.time()) |