aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
authorMcCabe Maxsted2009-09-25 21:12:07 -0700
committerMcCabe Maxsted2009-09-25 21:12:07 -0700
commitb02f8187cefdee0398edc917dfbe771531dd1a6f (patch)
treeba62ebccdf8e155652edb7c8c743e4cebb0416a8 /linden/indra
parentTemporarily disable chat channel control in chat history until it's fixed (diff)
downloadmeta-impy-b02f8187cefdee0398edc917dfbe771531dd1a6f.zip
meta-impy-b02f8187cefdee0398edc917dfbe771531dd1a6f.tar.gz
meta-impy-b02f8187cefdee0398edc917dfbe771531dd1a6f.tar.bz2
meta-impy-b02f8187cefdee0398edc917dfbe771531dd1a6f.tar.xz
Fixed chat channel control value not updating when Return key pressed
Diffstat (limited to 'linden/indra')
-rw-r--r--linden/indra/llui/llspinctrl.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/linden/indra/llui/llspinctrl.cpp b/linden/indra/llui/llspinctrl.cpp
index 51daefb..4f1ba26 100644
--- a/linden/indra/llui/llspinctrl.cpp
+++ b/linden/indra/llui/llspinctrl.cpp
@@ -468,6 +468,11 @@ BOOL LLSpinCtrl::handleKeyHere(KEY key, MASK mask)
468 LLSpinCtrl::onDownBtn(this); 468 LLSpinCtrl::onDownBtn(this);
469 return TRUE; 469 return TRUE;
470 } 470 }
471 if(key == KEY_RETURN)
472 {
473 forceEditorCommit();
474 return TRUE;
475 }
471 } 476 }
472 return FALSE; 477 return FALSE;
473} 478}