summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorYchebotarev ProductEngine <ychebotarev@productengine.com>2010-01-26 12:25:11 +0200
committerYchebotarev ProductEngine <ychebotarev@productengine.com>2010-01-26 12:25:11 +0200
commita402b2975fdb88781efa340d186c9ace449f9521 (patch)
treea9372010bddab562f80caf7f9ac4b992f9b74430 /indra
parent865617da42d1ec723362f83d6ab2edbae5bb9a65 (diff)
fix for normal [BSI] About Land -> Script Information -> Divider between object owner and parcel location cannot be moved to resize fields
--HG-- branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloaterscriptlimits.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/indra/newview/llfloaterscriptlimits.cpp b/indra/newview/llfloaterscriptlimits.cpp
index 0964ad7f91..8875e35821 100644
--- a/indra/newview/llfloaterscriptlimits.cpp
+++ b/indra/newview/llfloaterscriptlimits.cpp
@@ -528,7 +528,16 @@ BOOL LLPanelScriptLimitsRegionMemory::postBuild()
std::string msg_waiting = LLTrans::getString("ScriptLimitsRequestWaiting");
childSetValue("loading_text", LLSD(msg_waiting));
-
+
+ LLScrollListCtrl *list = getChild<LLScrollListCtrl>("scripts_list");
+
+ //set all columns to resizable mode even if some columns will be empty
+ for(S32 column = 0; column < list->getNumColumns(); column++)
+ {
+ LLScrollListColumn* columnp = list->getColumn(column);
+ columnp->mHeader->setHasResizableElement(TRUE);
+ }
+
return StartRequestChain();
}