Skip to content
Snippets Groups Projects
Commit 7ede86c9 authored by Oz Linden's avatar Oz Linden
Browse files

merge changes for STORM-2031

parents 7062026d 4fffc8c8
No related branches found
No related tags found
No related merge requests found
...@@ -713,6 +713,7 @@ Jonathan Yap ...@@ -713,6 +713,7 @@ Jonathan Yap
STORM-1986 STORM-1986
STORM-1981 STORM-1981
STORM-2015 STORM-2015
STORM-2031
STORM-2030 STORM-2030
STORM-2034 STORM-2034
STORM-2018 STORM-2018
......
...@@ -208,7 +208,7 @@ void LLFloaterTopObjects::handleReply(LLMessageSystem *msg, void** data) ...@@ -208,7 +208,7 @@ void LLFloaterTopObjects::handleReply(LLMessageSystem *msg, void** data)
columns[column_num++]["font"] = "SANSSERIF"; columns[column_num++]["font"] = "SANSSERIF";
columns[column_num]["column"] = "location"; columns[column_num]["column"] = "location";
columns[column_num]["value"] = llformat("<%0.1f,%0.1f,%0.1f>", location_x, location_y, location_z); columns[column_num]["value"] = llformat("<%0.f, %0.f, %0.f>", location_x, location_y, location_z);
columns[column_num++]["font"] = "SANSSERIF"; columns[column_num++]["font"] = "SANSSERIF";
columns[column_num]["column"] = "parcel"; columns[column_num]["column"] = "parcel";
...@@ -258,6 +258,8 @@ void LLFloaterTopObjects::handleReply(LLMessageSystem *msg, void** data) ...@@ -258,6 +258,8 @@ void LLFloaterTopObjects::handleReply(LLMessageSystem *msg, void** data)
format.setArg("[COUNT]", llformat("%d", total_count)); format.setArg("[COUNT]", llformat("%d", total_count));
format.setArg("[TIME]", llformat("%0.3f", mtotalScore)); format.setArg("[TIME]", llformat("%0.3f", mtotalScore));
getChild<LLUICtrl>("title_text")->setValue(LLSD(format)); getChild<LLUICtrl>("title_text")->setValue(LLSD(format));
list->setColumnLabel("URLs", getString("URLs"));
list->setColumnLabel("memory", getString("memory"));
} }
else else
{ {
......
...@@ -38,6 +38,18 @@ ...@@ -38,6 +38,18 @@
name="none_descriptor"> name="none_descriptor">
None found. None found.
</floater.string> </floater.string>
<floater.string
name="URLs">
URLs
</floater.string>
<floater.string
name="memory">
Memory (KB)
</floater.string>
<text <text
type="string" type="string"
length="1" length="1"
...@@ -82,7 +94,7 @@ ...@@ -82,7 +94,7 @@
name="parcel" name="parcel"
width="120" /> width="120" />
<scroll_list.columns <scroll_list.columns
label="Time" label="Date"
name="time" name="time"
width="130" /> width="130" />
<scroll_list.columns <scroll_list.columns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment