From 64a34c13703155679a9cba3057b785ff8d55a070 Mon Sep 17 00:00:00 2001 From: Oz Linden Date: Tue, 12 Jun 2012 06:50:22 -0400 Subject: minor ui tweaks from review --- indra/newview/llfloaterautoreplacesettings.cpp | 2 ++ indra/newview/llfloaterspellchecksettings.cpp | 19 +++++----- indra/newview/llfloaterspellchecksettings.h | 3 +- .../skins/default/xui/en/floater_autoreplace.xml | 8 ++--- .../skins/default/xui/en/floater_spellcheck.xml | 40 ++-------------------- .../default/xui/en/panel_preferences_chat.xml | 6 ++-- 6 files changed, 21 insertions(+), 57 deletions(-) (limited to 'indra') diff --git a/indra/newview/llfloaterautoreplacesettings.cpp b/indra/newview/llfloaterautoreplacesettings.cpp index 1449c88820..7d1bcba978 100644 --- a/indra/newview/llfloaterautoreplacesettings.cpp +++ b/indra/newview/llfloaterautoreplacesettings.cpp @@ -128,6 +128,8 @@ BOOL LLFloaterAutoReplaceSettings::postBuild(void) mReplacementsList->setCommitCallback(boost::bind(&LLFloaterAutoReplaceSettings::onSelectEntry, this)); mReplacementsList->setCommitOnSelectionChange(true); + center(); + mSelectedListName.clear(); updateListNames(); updateListNamesControls(); diff --git a/indra/newview/llfloaterspellchecksettings.cpp b/indra/newview/llfloaterspellchecksettings.cpp index 059a28fbcd..d350637790 100644 --- a/indra/newview/llfloaterspellchecksettings.cpp +++ b/indra/newview/llfloaterspellchecksettings.cpp @@ -68,17 +68,10 @@ BOOL LLFloaterSpellCheckerSettings::postBuild(void) getChild("spellcheck_main_combo")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::refreshDictionaries, this, false)); getChild("spellcheck_moveleft_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::onBtnMove, this, "spellcheck_active_list", "spellcheck_available_list")); getChild("spellcheck_moveright_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::onBtnMove, this, "spellcheck_available_list", "spellcheck_active_list")); - getChild("spellcheck_ok")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::onBtnOK, this)); - getChild("spellcheck_cancel")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::onBtnCancel, this)); return true; } -void LLFloaterSpellCheckerSettings::onBtnCancel() -{ - closeFloater(false); -} - void LLFloaterSpellCheckerSettings::onBtnImport() { LLFloaterReg::showInstance("prefs_spellchecker_import"); @@ -104,8 +97,14 @@ void LLFloaterSpellCheckerSettings::onBtnMove(const std::string& from, const std from_ctrl->deleteSelectedItems(); } -void LLFloaterSpellCheckerSettings::onBtnOK() +void LLFloaterSpellCheckerSettings::onClose(bool app_quitting) { + if (app_quitting) + { + // don't save anything + return; + } + std::list list_dict; LLComboBox* dict_combo = findChild("spellcheck_main_combo"); @@ -126,8 +125,6 @@ void LLFloaterSpellCheckerSettings::onBtnOK() } } gSavedSettings.setString("SpellCheckDictionary", boost::join(list_dict, ",")); - - closeFloater(false); } void LLFloaterSpellCheckerSettings::onOpen(const LLSD& key) @@ -254,7 +251,7 @@ BOOL LLFloaterSpellCheckerImport::postBuild(void) getChild("dictionary_path_browse")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerImport::onBtnBrowse, this)); getChild("ok_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerImport::onBtnOK, this)); getChild("cancel_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerImport::onBtnCancel, this)); - + center(); return true; } diff --git a/indra/newview/llfloaterspellchecksettings.h b/indra/newview/llfloaterspellchecksettings.h index c1c998915f..4bc68e2a88 100644 --- a/indra/newview/llfloaterspellchecksettings.h +++ b/indra/newview/llfloaterspellchecksettings.h @@ -37,12 +37,11 @@ public: /*virtual*/ void draw(); /*virtual*/ BOOL postBuild(); /*virtual*/ void onOpen(const LLSD& key); + /*virtual*/ void onClose(bool app_quitting); protected: - void onBtnCancel(); void onBtnImport(); void onBtnMove(const std::string& from, const std::string& to); - void onBtnOK(); void onBtnRemove(); void onSpellCheckSettingsChange(); void refreshDictionaries(bool from_settings); diff --git a/indra/newview/skins/default/xui/en/floater_autoreplace.xml b/indra/newview/skins/default/xui/en/floater_autoreplace.xml index 1a19e51c21..0bfefc8abe 100644 --- a/indra/newview/skins/default/xui/en/floater_autoreplace.xml +++ b/indra/newview/skins/default/xui/en/floater_autoreplace.xml @@ -3,20 +3,20 @@ border="true" can_close="true" can_minimize="true" - bottom="400" - left="300" can_resize="false" + help_topic="autoreplace_settings" + save_rect="true" height="455" width="490" name="autoreplace_floater" - title="Autoreplace Settings"> + title="Auto-Replace Settings"> @@ -157,38 +157,4 @@ name="spellcheck_import_btn" top_delta="0" width="80" /> - - -- cgit v1.2.3