aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMcCabe Maxsted2009-09-25 19:54:02 -0700
committerMcCabe Maxsted2009-09-25 19:54:02 -0700
commit64ee599c5b54496853025df6f609764acb846248 (patch)
tree0e6085a0237fc81c8639ed303549100a0be47b85
parentFixed region names not showing up on regions with zero avatars (diff)
downloadmeta-impy-64ee599c5b54496853025df6f609764acb846248.zip
meta-impy-64ee599c5b54496853025df6f609764acb846248.tar.gz
meta-impy-64ee599c5b54496853025df6f609764acb846248.tar.bz2
meta-impy-64ee599c5b54496853025df6f609764acb846248.tar.xz
Temporarily disable chat channel control in chat history until it's fixed
Diffstat (limited to '')
-rw-r--r--ChangeLog.txt7
-rw-r--r--linden/indra/newview/llchatbar.cpp2
-rw-r--r--linden/indra/newview/llfloaterchat.cpp2
-rw-r--r--linden/indra/newview/llprefschat.cpp2
4 files changed, 11 insertions, 2 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index 3272dd6..f3fba08 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -14,6 +14,13 @@
14 14
15 modified: linden/indra/newview/llworldmapview.cpp 15 modified: linden/indra/newview/llworldmapview.cpp
16 16
17
18 * Temporarily disable chat channel control in chat history until it works right.
19
20 modified: linden/indra/newview/llchatbar.cpp
21 modified: linden/indra/newview/llfloaterchat.cpp
22 modified: linden/indra/newview/llprefschat.cpp
23
17 24
182009-09-24 McCabe Maxsted <hakushakukun@gmail.com> 252009-09-24 McCabe Maxsted <hakushakukun@gmail.com>
19 26
diff --git a/linden/indra/newview/llchatbar.cpp b/linden/indra/newview/llchatbar.cpp
index 1de3690..46024ab 100644
--- a/linden/indra/newview/llchatbar.cpp
+++ b/linden/indra/newview/llchatbar.cpp
@@ -217,7 +217,7 @@ void LLChatBar::refresh()
217 217
218 childSetValue("History", LLFloaterChat::instanceVisible(LLSD())); 218 childSetValue("History", LLFloaterChat::instanceVisible(LLSD()));
219 219
220 childSetValue("channel_control",( 1.f * ((S32)(getChild<LLSpinCtrl>("channel_control")->get()))) ); 220 //childSetValue("channel_control",( 1.f * ((S32)(getChild<LLSpinCtrl>("channel_control")->get()))) );
221 childSetEnabled("Say", mInputEditor->getText().size() > 0); 221 childSetEnabled("Say", mInputEditor->getText().size() > 0);
222 childSetEnabled("Shout", mInputEditor->getText().size() > 0); 222 childSetEnabled("Shout", mInputEditor->getText().size() > 0);
223 223
diff --git a/linden/indra/newview/llfloaterchat.cpp b/linden/indra/newview/llfloaterchat.cpp
index 1f51a21..1f34ad0 100644
--- a/linden/indra/newview/llfloaterchat.cpp
+++ b/linden/indra/newview/llfloaterchat.cpp
@@ -108,6 +108,8 @@ LLFloaterChat::LLFloaterChat(const LLSD& seed)
108 childSetVisible("Chat History Editor with mute",FALSE); 108 childSetVisible("Chat History Editor with mute",FALSE);
109 childSetAction("toggle_active_speakers_btn", onClickToggleActiveSpeakers, this); 109 childSetAction("toggle_active_speakers_btn", onClickToggleActiveSpeakers, this);
110 setDefaultBtn("Chat"); 110 setDefaultBtn("Chat");
111
112 //toggleHistoryChannelControl(); temporarily disable until working
111} 113}
112 114
113LLFloaterChat::~LLFloaterChat() 115LLFloaterChat::~LLFloaterChat()
diff --git a/linden/indra/newview/llprefschat.cpp b/linden/indra/newview/llprefschat.cpp
index f3b7278..6e55cda 100644
--- a/linden/indra/newview/llprefschat.cpp
+++ b/linden/indra/newview/llprefschat.cpp
@@ -194,7 +194,7 @@ void LLPrefsChatImpl::apply()
194 if (gChatBar) 194 if (gChatBar)
195 { 195 {
196 gChatBar->toggleChannelControl(); 196 gChatBar->toggleChannelControl();
197 LLFloaterChat::toggleHistoryChannelControl(); 197 //LLFloaterChat::toggleHistoryChannelControl(); temporarily disable until working
198 } 198 }
199 mChatChannel = chan_check; 199 mChatChannel = chan_check;
200 } 200 }