diff options
author | Armin Weatherwax | 2010-11-08 19:51:32 +0100 |
---|---|---|
committer | Armin Weatherwax | 2010-11-09 23:31:11 +0100 |
commit | 44c07eb2c58c4898752ad813d46c224ccd7229f1 (patch) | |
tree | 27d79577d2f4afc0401cd9593e2c7a60e333c624 /linden/indra/newview/skins/default/xui/en-us | |
parent | As we currently do not build the gstreamer plugin for windows, do not try to ... (diff) | |
download | meta-impy-44c07eb2c58c4898752ad813d46c224ccd7229f1.zip meta-impy-44c07eb2c58c4898752ad813d46c224ccd7229f1.tar.gz meta-impy-44c07eb2c58c4898752ad813d46c224ccd7229f1.tar.bz2 meta-impy-44c07eb2c58c4898752ad813d46c224ccd7229f1.tar.xz |
feature: add a tiny context menu to areasearch scroll list items
rightclick one of the results and teleport or cam to the object or bring it in edit mode
Diffstat (limited to 'linden/indra/newview/skins/default/xui/en-us')
-rw-r--r-- | linden/indra/newview/skins/default/xui/en-us/menu_areasearch.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/linden/indra/newview/skins/default/xui/en-us/menu_areasearch.xml b/linden/indra/newview/skins/default/xui/en-us/menu_areasearch.xml new file mode 100644 index 0000000..c55d1b3 --- /dev/null +++ b/linden/indra/newview/skins/default/xui/en-us/menu_areasearch.xml | |||
@@ -0,0 +1,16 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <menu bottom="100" color="MenuDefaultBgColor" drop_shadow="true" height="101" left="100" | ||
3 | mouse_opaque="false" name="popup" opaque="true" width="128"> | ||
4 | <menu_item_call bottom_delta="-18" height="18" label="Teleport to" left="0" | ||
5 | mouse_opaque="true" name="teleport" width="128"> | ||
6 | <on_click function="Popup.HandleMenu" userdata="teleport" /> | ||
7 | </menu_item_call> | ||
8 | <menu_item_call bottom_delta="-18" height="18" label="Cam to" left="0" | ||
9 | mouse_opaque="true" name="cam" width="128"> | ||
10 | <on_click function="Popup.HandleMenu" userdata="cam" /> | ||
11 | </menu_item_call> | ||
12 | <menu_item_call bottom_delta="-18" height="18" label="Edit" left="0" | ||
13 | mouse_opaque="true" name="edit" width="128"> | ||
14 | <on_click function="Popup.HandleMenu" userdata="edit" /> | ||
15 | </menu_item_call> | ||
16 | </menu> | ||