aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMcCabe Maxsted2009-09-25 21:12:07 -0700
committerMcCabe Maxsted2009-09-25 21:12:07 -0700
commitb02f8187cefdee0398edc917dfbe771531dd1a6f (patch)
treeba62ebccdf8e155652edb7c8c743e4cebb0416a8
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 '')
-rw-r--r--ChangeLog.txt7
-rw-r--r--linden/indra/llui/llspinctrl.cpp5
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index f3fba08..f98be93 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -15,11 +15,16 @@
15 modified: linden/indra/newview/llworldmapview.cpp 15 modified: linden/indra/newview/llworldmapview.cpp
16 16
17 17
18 * Temporarily disable chat channel control in chat history until it works right. 18 * Temporarily disable chat channel control in chat history until it's fixed.
19 19
20 modified: linden/indra/newview/llchatbar.cpp 20 modified: linden/indra/newview/llchatbar.cpp
21 modified: linden/indra/newview/llfloaterchat.cpp 21 modified: linden/indra/newview/llfloaterchat.cpp
22 modified: linden/indra/newview/llprefschat.cpp 22 modified: linden/indra/newview/llprefschat.cpp
23
24
25 * Fixed chat channel control value not updating when Return key pressed.
26
27 modified: linden/indra/llui/llspinctrl.cpp
23 28
24 29
252009-09-24 McCabe Maxsted <hakushakukun@gmail.com> 302009-09-24 McCabe Maxsted <hakushakukun@gmail.com>
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}