summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterscriptdebug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llfloaterscriptdebug.cpp')
-rw-r--r--indra/newview/llfloaterscriptdebug.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/indra/newview/llfloaterscriptdebug.cpp b/indra/newview/llfloaterscriptdebug.cpp
index 1cf10ae881..0ba75b71f6 100644
--- a/indra/newview/llfloaterscriptdebug.cpp
+++ b/indra/newview/llfloaterscriptdebug.cpp
@@ -31,10 +31,12 @@ LLFloaterScriptDebug* LLFloaterScriptDebug::sInstance = NULL;
//
// Member Functions
//
-LLFloaterScriptDebug::LLFloaterScriptDebug()
-: LLMultiFloater()
+LLFloaterScriptDebug::LLFloaterScriptDebug() :
+ LLMultiFloater()
{
-
+ // avoid resizing of the window to match
+ // the initial size of the tabbed-childs, whenever a tab is opened or closed
+ mAutoResize = FALSE;
}
LLFloaterScriptDebug::~LLFloaterScriptDebug()
@@ -90,6 +92,9 @@ LLFloater* LLFloaterScriptDebug::addOutputWindow(const LLUUID &object_id)
}
LLFloater::setFloaterHost(NULL);
+ // Tabs sometimes overlap resize handle
+ sInstance->moveResizeHandleToFront();
+
return floaterp;
}