aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterscriptdebug.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llfloaterscriptdebug.cpp11
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//
54LLFloaterScriptDebug::LLFloaterScriptDebug() 54LLFloaterScriptDebug::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
60LLFloaterScriptDebug::~LLFloaterScriptDebug() 62LLFloaterScriptDebug::~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