diff options
Diffstat (limited to 'indra/newview/llnearbychatbar.cpp')
-rw-r--r-- | indra/newview/llnearbychatbar.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/indra/newview/llnearbychatbar.cpp b/indra/newview/llnearbychatbar.cpp index eec0965384..cb08ca8862 100644 --- a/indra/newview/llnearbychatbar.cpp +++ b/indra/newview/llnearbychatbar.cpp @@ -109,6 +109,17 @@ BOOL LLNearbyChatBar::postBuild() mOutputMonitor = getChild<LLOutputMonitorCtrl>("chat_zone_indicator"); mOutputMonitor->setVisible(FALSE); + gSavedSettings.declareBOOL("nearbychat_history_visibility", mNearbyChat->getVisible(), "Visibility state of nearby chat history", TRUE); + + // If mVisibilityControl is not empty it means that the visibility state of floater is saved between sessions, + // i.e. save_visibility="true" for this floater. + // So if we need to restore visibility state of floater we also need to restore visibility state of nearby chat history. + if (!mVisibilityControl.empty()) + { + // restore visibility of nearby chat history + mNearbyChat->setVisible(gSavedSettings.getBOOL("nearbychat_history_visibility")); + } + // Register for font change notifications LLViewerChat::setFontChangedCallback(boost::bind(&LLNearbyChatBar::onChatFontChange, this, _1)); @@ -141,6 +152,18 @@ bool LLNearbyChatBar::applyRectControl() return rect_controlled; } +void LLNearbyChatBar::saveChatHistoryVisibility() +{ + // save visibility state of nearby chat history panel if + // visibility of nearby chat floater is saved, i.e. save_visisbility="true" + // (if save_visisbility="true", mVisibilityControl == "floater_vis_chat_bar") + if (mVisibilityControl.size() > 1) + { + // save visibility of nearby chat history + gSavedSettings.setBOOL("nearbychat_history_visibility", mNearbyChat->getVisible()); + } +} + void LLNearbyChatBar::onChatFontChange(LLFontGL* fontp) { // Update things with the new font whohoo @@ -413,6 +436,8 @@ void LLNearbyChatBar::onToggleNearbyChatPanel() enableResizeCtrls(true); storeRectControl(); } + + saveChatHistoryVisibility(); } void LLNearbyChatBar::setMinimized(BOOL b) |