diff options
author | Jacek Antonelli | 2008-08-15 23:45:04 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:04 -0500 |
commit | 117e22047c5752352342d64e3fb7ce00a4eb8113 (patch) | |
tree | e32de2cfba0dda8705ae528fcd1fbe23ba075685 /linden/indra/newview/llfloaterscriptdebug.cpp | |
parent | Second Life viewer sources 1.18.0.6 (diff) | |
download | meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.zip meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.gz meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.bz2 meta-impy-117e22047c5752352342d64e3fb7ce00a4eb8113.tar.xz |
Second Life viewer sources 1.18.1.2
Diffstat (limited to 'linden/indra/newview/llfloaterscriptdebug.cpp')
-rw-r--r-- | linden/indra/newview/llfloaterscriptdebug.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/linden/indra/newview/llfloaterscriptdebug.cpp b/linden/indra/newview/llfloaterscriptdebug.cpp index 5ad2dc9..82f5ce8 100644 --- a/linden/indra/newview/llfloaterscriptdebug.cpp +++ b/linden/indra/newview/llfloaterscriptdebug.cpp | |||
@@ -51,10 +51,12 @@ LLFloaterScriptDebug* LLFloaterScriptDebug::sInstance = NULL; | |||
51 | // | 51 | // |
52 | // Member Functions | 52 | // Member Functions |
53 | // | 53 | // |
54 | LLFloaterScriptDebug::LLFloaterScriptDebug() | 54 | LLFloaterScriptDebug::LLFloaterScriptDebug() : |
55 | : LLMultiFloater() | 55 | LLMultiFloater() |
56 | { | 56 | { |
57 | 57 | // avoid resizing of the window to match | |
58 | // the initial size of the tabbed-childs, whenever a tab is opened or closed | ||
59 | mAutoResize = FALSE; | ||
58 | } | 60 | } |
59 | 61 | ||
60 | LLFloaterScriptDebug::~LLFloaterScriptDebug() | 62 | LLFloaterScriptDebug::~LLFloaterScriptDebug() |
@@ -110,6 +112,9 @@ LLFloater* LLFloaterScriptDebug::addOutputWindow(const LLUUID &object_id) | |||
110 | } | 112 | } |
111 | LLFloater::setFloaterHost(NULL); | 113 | LLFloater::setFloaterHost(NULL); |
112 | 114 | ||
115 | // Tabs sometimes overlap resize handle | ||
116 | sInstance->moveResizeHandlesToFront(); | ||
117 | |||
113 | return floaterp; | 118 | return floaterp; |
114 | } | 119 | } |
115 | 120 | ||