diff options
author | Jacek Antonelli | 2008-11-29 21:19:57 -0600 |
---|---|---|
committer | Jacek Antonelli | 2008-11-29 21:19:57 -0600 |
commit | ab87675230ce6139f57b5f19af66599ada9e270e (patch) | |
tree | e1316aff72cfcf152193c01b617a23901994ef1a | |
parent | Fixed inworld browser crash in Windows. (diff) | |
download | meta-impy-ab87675230ce6139f57b5f19af66599ada9e270e.zip meta-impy-ab87675230ce6139f57b5f19af66599ada9e270e.tar.gz meta-impy-ab87675230ce6139f57b5f19af66599ada9e270e.tar.bz2 meta-impy-ab87675230ce6139f57b5f19af66599ada9e270e.tar.xz |
Remove preprocessor condition for grid selector.
The grid selector on the login screen will always show,
instead of only showing when the viewer was compiled
as LL_RELEASE_FOR_DOWNLOAD.
-rw-r--r-- | ChangeLog.txt | 7 | ||||
-rw-r--r-- | linden/indra/newview/llpanellogin.cpp | 5 |
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 @@ | |||
1 | 2008-11-29 Jacek Antonelli <jacek.antonelli@gmail.com> | 1 | 2008-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 | } |