diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-05-09 10:41:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-09 10:41:17 -0400 |
commit | a3f2cacf542e1d770698ef6c7e6ea1c0a5cd3368 (patch) | |
tree | 5e0af7909b62f6ca0ed01056366aafed8ed57753 /indra/newview/scripts/lua | |
parent | 51e86a0eff4e919075b32c498305add577450111 (diff) | |
parent | cec3b8d870085925cd0c9fb900b7d5e4629bcbfd (diff) |
Merge pull request #1419 from secondlife/lua-resizable-debugfloater
Copy xml files to scripts/lua; make Lua debug floater resizable
Diffstat (limited to 'indra/newview/scripts/lua')
-rw-r--r-- | indra/newview/scripts/lua/LLDebugSettings.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/scripts/lua/LLDebugSettings.lua b/indra/newview/scripts/lua/LLDebugSettings.lua index c809dfff91..c1d74fe00a 100644 --- a/indra/newview/scripts/lua/LLDebugSettings.lua +++ b/indra/newview/scripts/lua/LLDebugSettings.lua @@ -1,6 +1,6 @@ leap = require 'leap' -function check_response(res) +local function check_response(res) if res.error then error(res.error) end |