aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt7
-rw-r--r--linden/indra/newview/llpanellogin.cpp5
2 files changed, 7 insertions, 5 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index 7324410..88829c9 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -1,5 +1,12 @@
12008-11-29 Jacek Antonelli <jacek.antonelli@gmail.com> 12008-11-29 Jacek Antonelli <jacek.antonelli@gmail.com>
2 2
3 * linden/indra/newview/llpanellogin.cpp:
4 Remove preprocessor condition for grid selector.
5 The grid selector on the login screen will always show,
6 instead of only showing when the viewer was compiled
7 as LL_RELEASE_FOR_DOWNLOAD.
8
9
3 * linden/indra/newview/llappviewer.cpp: 10 * linden/indra/newview/llappviewer.cpp:
4 Stop console window from always showing up. 11 Stop console window from always showing up.
5 12
diff --git a/linden/indra/newview/llpanellogin.cpp b/linden/indra/newview/llpanellogin.cpp
index 1dff8e7..09e2cee 100644
--- a/linden/indra/newview/llpanellogin.cpp
+++ b/linden/indra/newview/llpanellogin.cpp
@@ -789,12 +789,7 @@ void LLPanelLogin::refreshLocation( bool force_visible )
789 sInstance->childSetVisible("start_location_combo", show_start); 789 sInstance->childSetVisible("start_location_combo", show_start);
790 sInstance->childSetVisible("start_location_text", show_start); 790 sInstance->childSetVisible("start_location_text", show_start);
791 791
792#if LL_RELEASE_FOR_DOWNLOAD
793 BOOL show_server = gSavedSettings.getBOOL("ForceShowGrid");
794 sInstance->childSetVisible("server_combo", show_server);
795#else
796 sInstance->childSetVisible("server_combo", TRUE); 792 sInstance->childSetVisible("server_combo", TRUE);
797#endif
798 793
799#endif 794#endif
800} 795}