diff options
Diffstat (limited to 'indra/newview/skins/default/xui/en/floater_inspect.xml')
-rw-r--r-- | indra/newview/skins/default/xui/en/floater_inspect.xml | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/indra/newview/skins/default/xui/en/floater_inspect.xml b/indra/newview/skins/default/xui/en/floater_inspect.xml index ed3b4f00f2..bea35e5fc1 100644 --- a/indra/newview/skins/default/xui/en/floater_inspect.xml +++ b/indra/newview/skins/default/xui/en/floater_inspect.xml @@ -1,20 +1,22 @@ <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <floater + legacy_header_height="18" can_resize="true" height="300" layout="topleft" min_height="300" min_width="400" name="inspect" + help_topic="inspect" save_rect="true" - title="Inspect Objects" + title="INSPECT OBJECTS" width="400"> <floater.string name="timeStamp"> [wkday,datetime,local] [mth,datetime,local] [day,datetime,local] [hour,datetime,local]:[min,datetime,local]:[second,datetime,local] [year,datetime,local] </floater.string> <scroll_list - bottom="270" + bottom="268" column_padding="0" draw_heading="true" follows="top|right|left|bottom" @@ -25,40 +27,48 @@ tool_tip="Select an object from this list to highlight it in-world" top="20"> <scroll_list.columns - dynamicwidth="true" + dynamic_width="true" label="Object Name" name="object_name" /> <scroll_list.columns - dynamicwidth="true" + dynamic_width="true" label="Owner Name" name="owner_name" /> <scroll_list.columns - dynamicwidth="true" + dynamic_width="true" label="Creator Name" name="creator_name" /> <scroll_list.columns label="Creation Date" name="creation_date" width="150" /> + <scroll_list.commit_callback + function="Inspect.SelectObject" /> </scroll_list> <button follows="left|bottom" - height="20" + height="23" label="See Owner Profile..." layout="topleft" - left_delta="0" + left_delta="-1" name="button owner" tool_tip="See profile of the highlighted object's owner" - top_pad="5" - width="150" /> + top_pad="4" + width="150"> + <button.commit_callback + function="Inspect.OwnerProfile" /> + </button> <button follows="left|bottom" - height="20" + height="23" label="See Creator Profile..." layout="topleft" - left_pad="10" + left_pad="5" name="button creator" tool_tip="See profile of the highlighted object's original creator" top_delta="0" - width="150" /> + width="150"> + <button.commit_callback + function="Inspect.CreatorProfile" /> + </button> </floater> |