diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-02-13 12:36:06 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-02-13 12:36:06 -0500 |
commit | ffabe80fd98ad5a13b8833153606f47941fc6e42 (patch) | |
tree | fa4cf2d444e18fb740c0a9178e8c546d50ff6e06 | |
parent | 3044a6e62e628fdb3c4b8832fd23e566216d7bb9 (diff) | |
parent | 9b1796df73f2d4fa19517f390258f798c10bff1e (diff) |
Merge branch 'release/luau-scripting' into helpcmd.
-rw-r--r-- | indra/newview/llfloaterluadebug.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llfloaterluadebug.cpp b/indra/newview/llfloaterluadebug.cpp index 245cc88f79..3ebe40f80b 100644 --- a/indra/newview/llfloaterluadebug.cpp +++ b/indra/newview/llfloaterluadebug.cpp @@ -65,6 +65,8 @@ BOOL LLFloaterLUADebug::postBuild() getChild<LLButton>("execute_btn")->setClickedCallback(boost::bind(&LLFloaterLUADebug::onExecuteClicked, this)); getChild<LLButton>("browse_btn")->setClickedCallback(boost::bind(&LLFloaterLUADebug::onBtnBrowse, this)); getChild<LLButton>("run_btn")->setClickedCallback(boost::bind(&LLFloaterLUADebug::onBtnRun, this)); + mLineInput->setCommitCallback(boost::bind(&LLFloaterLUADebug::onExecuteClicked, this)); + mLineInput->setSelectAllonCommit(false); return TRUE; } |