diff options
Diffstat (limited to 'linden/indra')
4 files changed, 77 insertions, 145 deletions
diff --git a/linden/indra/newview/floaterlocalassetbrowse.H b/linden/indra/newview/floaterlocalassetbrowse.H index 6ee1c75..4827daa 100644 --- a/linden/indra/newview/floaterlocalassetbrowse.H +++ b/linden/indra/newview/floaterlocalassetbrowse.H | |||
@@ -244,8 +244,6 @@ private: | |||
244 | // Widgets | 244 | // Widgets |
245 | LLButton* mAddBtn; | 245 | LLButton* mAddBtn; |
246 | LLButton* mDelBtn; | 246 | LLButton* mDelBtn; |
247 | LLButton* mMoreBtn; | ||
248 | LLButton* mLessBtn; | ||
249 | LLButton* mUploadBtn; | 247 | LLButton* mUploadBtn; |
250 | 248 | ||
251 | LLScrollListCtrl* mBitmapList; | 249 | LLScrollListCtrl* mBitmapList; |
@@ -271,7 +269,6 @@ private: | |||
271 | static FloaterLocalAssetBrowser* sLFInstance; | 269 | static FloaterLocalAssetBrowser* sLFInstance; |
272 | 270 | ||
273 | // non-widget functions | 271 | // non-widget functions |
274 | static void FloaterResize(bool expand); | ||
275 | static void UpdateRightSide(void); | 272 | static void UpdateRightSide(void); |
276 | 273 | ||
277 | public: | 274 | public: |
diff --git a/linden/indra/newview/floaterlocalassetbrowse.cpp b/linden/indra/newview/floaterlocalassetbrowse.cpp index bf1bcad..dba4e85 100644 --- a/linden/indra/newview/floaterlocalassetbrowse.cpp +++ b/linden/indra/newview/floaterlocalassetbrowse.cpp | |||
@@ -59,6 +59,7 @@ this feature is still a work in progress. | |||
59 | /* misc headers */ | 59 | /* misc headers */ |
60 | #include <time.h> | 60 | #include <time.h> |
61 | #include <ctime> | 61 | #include <ctime> |
62 | #include "hippoGridManager.h" | ||
62 | #include "llviewerimagelist.h" | 63 | #include "llviewerimagelist.h" |
63 | #include "llviewerobjectlist.h" | 64 | #include "llviewerobjectlist.h" |
64 | #include "llfilepicker.h" | 65 | #include "llfilepicker.h" |
@@ -748,8 +749,6 @@ FloaterLocalAssetBrowser::FloaterLocalAssetBrowser() | |||
748 | // setting element/xui children: | 749 | // setting element/xui children: |
749 | mAddBtn = getChild<LLButton>("add_btn"); | 750 | mAddBtn = getChild<LLButton>("add_btn"); |
750 | mDelBtn = getChild<LLButton>("del_btn"); | 751 | mDelBtn = getChild<LLButton>("del_btn"); |
751 | mMoreBtn = getChild<LLButton>("more_btn"); | ||
752 | mLessBtn = getChild<LLButton>("less_btn"); | ||
753 | mUploadBtn = getChild<LLButton>("upload_btn"); | 752 | mUploadBtn = getChild<LLButton>("upload_btn"); |
754 | 753 | ||
755 | mBitmapList = getChild<LLScrollListCtrl>("bitmap_list"); | 754 | mBitmapList = getChild<LLScrollListCtrl>("bitmap_list"); |
@@ -781,8 +780,6 @@ FloaterLocalAssetBrowser::FloaterLocalAssetBrowser() | |||
781 | // setting button callbacks: | 780 | // setting button callbacks: |
782 | mAddBtn->setClickedCallback( onClickAdd, this); | 781 | mAddBtn->setClickedCallback( onClickAdd, this); |
783 | mDelBtn->setClickedCallback( onClickDel, this); | 782 | mDelBtn->setClickedCallback( onClickDel, this); |
784 | mMoreBtn->setClickedCallback( onClickMore, this); | ||
785 | mLessBtn->setClickedCallback( onClickLess, this); | ||
786 | mUploadBtn->setClickedCallback( onClickUpload, this); | 783 | mUploadBtn->setClickedCallback( onClickUpload, this); |
787 | 784 | ||
788 | // combo callback | 785 | // combo callback |
@@ -794,13 +791,18 @@ FloaterLocalAssetBrowser::FloaterLocalAssetBrowser() | |||
794 | // checkbox callbacks | 791 | // checkbox callbacks |
795 | mUpdateChkBox->setCommitCallback(onClickUpdateChkbox); | 792 | mUpdateChkBox->setCommitCallback(onClickUpdateChkbox); |
796 | 793 | ||
794 | mUpdateChkBox->set(true); | ||
795 | mUploadBtn->setLabelArg("[UPLOADFEE]", gHippoGridManager->getConnectedGrid()->getCurrencySymbol()); | ||
797 | } | 796 | } |
798 | 797 | ||
799 | void FloaterLocalAssetBrowser::show(void*) | 798 | void FloaterLocalAssetBrowser::show(void*) |
800 | { | 799 | { |
801 | if (!sLFInstance) | 800 | if (!sLFInstance) |
802 | sLFInstance = new FloaterLocalAssetBrowser(); | 801 | { |
802 | sLFInstance = new FloaterLocalAssetBrowser(); | ||
803 | } | ||
803 | sLFInstance->open(); | 804 | sLFInstance->open(); |
805 | sLFInstance->center(); | ||
804 | sLFInstance->UpdateBitmapScrollList(); | 806 | sLFInstance->UpdateBitmapScrollList(); |
805 | } | 807 | } |
806 | 808 | ||
@@ -819,18 +821,6 @@ void FloaterLocalAssetBrowser::onClickDel(void* userdata) | |||
819 | gLocalBrowser->DelBitmap( sLFInstance->mBitmapList->getAllSelected() ); | 821 | gLocalBrowser->DelBitmap( sLFInstance->mBitmapList->getAllSelected() ); |
820 | } | 822 | } |
821 | 823 | ||
822 | /* what stopped me from using a single button and simply changing it's label | ||
823 | is the fact that i'd need to hardcode the button labels here, and that is griff. */ | ||
824 | void FloaterLocalAssetBrowser::onClickMore(void* userdata) | ||
825 | { | ||
826 | FloaterResize(true); | ||
827 | } | ||
828 | |||
829 | void FloaterLocalAssetBrowser::onClickLess(void* userdata) | ||
830 | { | ||
831 | FloaterResize(false); | ||
832 | } | ||
833 | |||
834 | void FloaterLocalAssetBrowser::onClickUpload(void* userdata) | 824 | void FloaterLocalAssetBrowser::onClickUpload(void* userdata) |
835 | { | 825 | { |
836 | std::string filename = gLocalBrowser->GetBitmapUnit( | 826 | std::string filename = gLocalBrowser->GetBitmapUnit( |
@@ -874,39 +864,6 @@ void FloaterLocalAssetBrowser::onCommitTypeCombo(LLUICtrl* ctrl, void *userdata) | |||
874 | } | 864 | } |
875 | } | 865 | } |
876 | 866 | ||
877 | void FloaterLocalAssetBrowser::FloaterResize(bool expand) | ||
878 | { | ||
879 | sLFInstance->mMoreBtn->setVisible(!expand); | ||
880 | sLFInstance->mLessBtn->setVisible(expand); | ||
881 | sLFInstance->mTextureView->setVisible(expand); | ||
882 | sLFInstance->mUpdateChkBox->setVisible(expand); | ||
883 | sLFInstance->mCaptionPathTxt->setVisible(expand); | ||
884 | sLFInstance->mCaptionUUIDTxt->setVisible(expand); | ||
885 | sLFInstance->mCaptionLinkTxt->setVisible(expand); | ||
886 | sLFInstance->mCaptionNameTxt->setVisible(expand); | ||
887 | sLFInstance->mCaptionTimeTxt->setVisible(expand); | ||
888 | sLFInstance->mTypeComboBox->setVisible(expand); | ||
889 | |||
890 | sLFInstance->mTimeTxt->setVisible(expand); | ||
891 | sLFInstance->mPathTxt->setVisible(expand); | ||
892 | sLFInstance->mUUIDTxt->setVisible(expand); | ||
893 | sLFInstance->mLinkTxt->setVisible(expand); | ||
894 | sLFInstance->mNameTxt->setVisible(expand); | ||
895 | |||
896 | if(expand) | ||
897 | { | ||
898 | sLFInstance->reshape(LF_FLOATER_EXPAND_WIDTH, LF_FLOATER_HEIGHT); | ||
899 | sLFInstance->setResizeLimits(LF_FLOATER_EXPAND_WIDTH, LF_FLOATER_HEIGHT); | ||
900 | sLFInstance->UpdateRightSide(); | ||
901 | } | ||
902 | else | ||
903 | { | ||
904 | sLFInstance->reshape(LF_FLOATER_CONTRACT_WIDTH, LF_FLOATER_HEIGHT); | ||
905 | sLFInstance->setResizeLimits(LF_FLOATER_CONTRACT_WIDTH, LF_FLOATER_HEIGHT); | ||
906 | } | ||
907 | |||
908 | } | ||
909 | |||
910 | void FloaterLocalAssetBrowser::UpdateBitmapScrollList() | 867 | void FloaterLocalAssetBrowser::UpdateBitmapScrollList() |
911 | { | 868 | { |
912 | if ( !sLFInstance ) { return; } | 869 | if ( !sLFInstance ) { return; } |
@@ -937,10 +894,7 @@ void FloaterLocalAssetBrowser::UpdateBitmapScrollList() | |||
937 | void FloaterLocalAssetBrowser::UpdateRightSide() | 894 | void FloaterLocalAssetBrowser::UpdateRightSide() |
938 | { | 895 | { |
939 | /* | 896 | /* |
940 | Since i'm not keeping a bool on if the floater is expanded or not, i'll | 897 | Before updating - checking if something IS actually selected :o |
941 | just check if one of the widgets that shows when the floater is expanded is visible. | ||
942 | |||
943 | Also obviously before updating - checking if something IS actually selected :o | ||
944 | */ | 898 | */ |
945 | 899 | ||
946 | if ( !sLFInstance->mTextureView->getVisible() ) { return; } | 900 | if ( !sLFInstance->mTextureView->getVisible() ) { return; } |
@@ -961,6 +915,7 @@ void FloaterLocalAssetBrowser::UpdateRightSide() | |||
961 | sLFInstance->mTypeComboBox->selectNthItem( unit->getType() ); | 915 | sLFInstance->mTypeComboBox->selectNthItem( unit->getType() ); |
962 | 916 | ||
963 | sLFInstance->mTextureView->setEnabled(true); | 917 | sLFInstance->mTextureView->setEnabled(true); |
918 | sLFInstance->mUpdateChkBox->set(true); | ||
964 | sLFInstance->mUpdateChkBox->setEnabled(true); | 919 | sLFInstance->mUpdateChkBox->setEnabled(true); |
965 | sLFInstance->mTypeComboBox->setEnabled(true); | 920 | sLFInstance->mTypeComboBox->setEnabled(true); |
966 | } | 921 | } |
diff --git a/linden/indra/newview/skins/default/xui/en-us/floater_local_asset_browse.xml b/linden/indra/newview/skins/default/xui/en-us/floater_local_asset_browse.xml index c63f989..f9bb3a7 100644 --- a/linden/indra/newview/skins/default/xui/en-us/floater_local_asset_browse.xml +++ b/linden/indra/newview/skins/default/xui/en-us/floater_local_asset_browse.xml | |||
@@ -4,103 +4,83 @@ | |||
4 | 4 | ||
5 | <floater | 5 | <floater |
6 | name="local_bitmap_browser_floater" | 6 | name="local_bitmap_browser_floater" |
7 | title="Local Bitmap Browser" | 7 | title="Local Texture Properties" |
8 | can_resize="true" | 8 | can_resize="false" |
9 | can_minimize="true" | 9 | can_minimize="true" |
10 | can_close="true" | 10 | can_close="true" |
11 | can_drag_on_left="false" | 11 | can_drag_on_left="false" |
12 | width="415" | 12 | width="415" |
13 | height="260" | 13 | height="460" |
14 | min_width="415" | 14 | min_width="415" |
15 | min_height="260" | 15 | min_height="460" |
16 | rect_control="FloaterLocalbitmapbrowserRect" | 16 | rect_control="FloaterLocalbitmapbrowserRect" |
17 | > | 17 | > |
18 | 18 | ||
19 | <!-- floater definition end, left side begin --> | ||
20 | |||
21 | <button | 19 | <button |
22 | name="add_btn" | 20 | name="add_btn" |
23 | label="Add" | 21 | label="Add" |
24 | left="12.5" | 22 | left="12.5" |
25 | bottom="10" | 23 | bottom="-45" |
26 | width="90" | 24 | width="90" |
27 | height="20" | 25 | height="20" |
28 | /> | 26 | /> |
29 | <button | 27 | <button |
30 | name="del_btn" | 28 | name="del_btn" |
31 | label="Remove" | 29 | label="Remove" |
32 | left_delta="100" | 30 | left_delta="95" |
33 | bottom_delta="0" | 31 | bottom_delta="0" |
34 | width="90" | 32 | width="90" |
35 | height="20" | 33 | height="20" |
36 | /> | 34 | /> |
37 | <button | 35 | <button |
38 | name="upload_btn" | 36 | name="upload_btn" |
39 | label="Upload" | 37 | label="Upload Image ([UPLOADFEE])..." |
40 | left_delta="100" | 38 | right="-5" |
41 | bottom_delta="0" | 39 | bottom_delta="0" |
42 | width="90" | 40 | width="170" |
43 | height="20" | 41 | height="20" |
42 | follows="left|top" | ||
44 | /> | 43 | /> |
45 | <button | ||
46 | name="more_btn" | ||
47 | label="More" | ||
48 | left_delta="100" | ||
49 | bottom_delta="0" | ||
50 | width="90" | ||
51 | height="20" | ||
52 | /> | ||
53 | <button | ||
54 | name="less_btn" | ||
55 | label="Less" | ||
56 | left_delta="0" | ||
57 | bottom_delta="0" | ||
58 | width="90" | ||
59 | height="20" | ||
60 | visible="false" | ||
61 | /> | ||
62 | 44 | ||
63 | <scroll_list | 45 | <scroll_list |
64 | name="bitmap_list" | 46 | name="bitmap_list" |
65 | left="10" | 47 | left="10" |
66 | bottom_delta="30" | 48 | bottom_delta="-205" |
67 | width="395" | 49 | width="395" |
68 | height="200" | 50 | height="200" |
69 | column_padding="0" | 51 | column_padding="0" |
70 | can_resize="false" | 52 | can_resize="false" |
71 | draw_heading="true" | 53 | draw_heading="true" |
72 | multi_select="true" | 54 | multi_select="false" |
73 | search_column="1" | 55 | search_column="1" |
74 | follows="bottom|top" | 56 | follows="bottom|top" |
75 | > | 57 | > |
76 | <column name="bitmap_name" label="Name" dynamicwidth="true" /> | 58 | <column name="bitmap_name" label="Name" dynamicwidth="true" /> |
77 | <column name="bitmap_uuid" label="UUID" width="240" /> | 59 | <column name="bitmap_uuid" label="UUID" width="240" /> |
78 | </scroll_list> | 60 | </scroll_list> |
79 | 61 | ||
80 | <!-- left side done, right side begin --> | 62 | <line_editor |
81 | 63 | bevel_style="in" | |
82 | <line_editor | 64 | border_style="line" |
83 | bevel_style="in" | ||
84 | border_style="line" | ||
85 | border_thickness="1" | 65 | border_thickness="1" |
86 | mouse_opaque="true" | 66 | mouse_opaque="true" |
87 | follows="top" | 67 | follows="left|top" |
88 | height="16" | 68 | height="16" |
89 | bottom_delta="16" | 69 | bottom="16" |
90 | left_delta="405" | 70 | left="10" |
91 | name="path_text" | 71 | name="path_text" |
92 | select_all_on_focus_received="true" | 72 | select_all_on_focus_received="true" |
93 | width="305" | 73 | width="305" |
94 | visible="false" | 74 | visible="true" |
95 | /> | 75 | /> |
96 | 76 | ||
97 | <text name="path_caption_text" | 77 | <text name="path_caption_text" |
98 | left_delta="0" | 78 | left_delta="0" |
99 | bottom_delta="20" | 79 | bottom_delta="20" |
100 | follows="top" | 80 | follows="left|top" |
101 | width="100" | 81 | width="100" |
102 | height="16" | 82 | height="16" |
103 | visible="false" | 83 | visible="true" |
104 | > | 84 | > |
105 | Local path: | 85 | Local path: |
106 | </text> | 86 | </text> |
@@ -110,23 +90,23 @@ | |||
110 | border_style="line" | 90 | border_style="line" |
111 | border_thickness="1" | 91 | border_thickness="1" |
112 | mouse_opaque="true" | 92 | mouse_opaque="true" |
113 | follows="top" | 93 | follows="left|top" |
114 | height="16" | 94 | height="16" |
115 | bottom_delta="20" | 95 | bottom_delta="20" |
116 | left_delta="0" | 96 | left_delta="0" |
117 | name="uuid_text" | 97 | name="uuid_text" |
118 | select_all_on_focus_received="true" | 98 | select_all_on_focus_received="true" |
119 | width="305" | 99 | width="305" |
120 | visible="false" | 100 | visible="true" |
121 | /> | 101 | /> |
122 | 102 | ||
123 | <text name="uuid_caption_text" | 103 | <text name="uuid_caption_text" |
124 | left_delta="0" | 104 | left_delta="0" |
125 | follows="top" | 105 | follows="left|top" |
126 | bottom_delta="21" | 106 | bottom_delta="21" |
127 | width="260" | 107 | width="260" |
128 | height="16" | 108 | height="16" |
129 | visible="false" | 109 | visible="true" |
130 | > | 110 | > |
131 | Local UUID: | 111 | Local UUID: |
132 | </text> | 112 | </text> |
@@ -143,13 +123,13 @@ | |||
143 | left_delta="0" | 123 | left_delta="0" |
144 | mouse_opaque="true" | 124 | mouse_opaque="true" |
145 | name="texture_view" | 125 | name="texture_view" |
146 | visible="false" | 126 | visible="true" |
147 | /> | 127 | /> |
148 | 128 | ||
149 | <check_box | 129 | <check_box |
150 | bottom_delta="15" | 130 | bottom_delta="15" |
151 | left_delta="100" | 131 | left_delta="100" |
152 | follows="top" | 132 | follows="left|top" |
153 | height="16" | 133 | height="16" |
154 | initial_value="true" | 134 | initial_value="true" |
155 | label="Keep updating" | 135 | label="Keep updating" |
@@ -157,55 +137,55 @@ | |||
157 | name="keep_updating_checkbox" | 137 | name="keep_updating_checkbox" |
158 | tool_tip="Enable or disable periodic checks if the source bitmap on your hard drive has been updated" | 138 | tool_tip="Enable or disable periodic checks if the source bitmap on your hard drive has been updated" |
159 | width="166" | 139 | width="166" |
160 | visible="false" | 140 | visible="true" |
161 | enabled="true" | 141 | enabled="true" |
162 | /> | 142 | /> |
163 | 143 | ||
164 | <combo_box | 144 | <combo_box |
165 | visible="false" | 145 | visible="true" |
166 | allow_text_entry="false" | 146 | allow_text_entry="false" |
167 | bottom_delta="0" | 147 | bottom_delta="0" |
168 | follows="top" | 148 | follows="left|top" |
169 | height="18" | 149 | height="18" |
170 | left_delta="120" | 150 | left_delta="120" |
171 | max_chars="20" | 151 | max_chars="20" |
172 | mouse_opaque="true" | 152 | mouse_opaque="true" |
173 | name="type_combobox" | 153 | name="type_combobox" |
174 | width="83" | 154 | width="83" |
175 | > | 155 | > |
176 | 156 | ||
177 | <combo_item name="type_texture" value="type_texture"> | 157 | <combo_item name="type_texture" value="type_texture"> |
178 | Texture | 158 | Texture |
179 | </combo_item> | 159 | </combo_item> |
180 | 160 | ||
181 | <combo_item name="type_sculptie" value="type_sculptie"> | 161 | <combo_item name="type_sculptie" value="type_sculptie"> |
182 | Sculptmap | 162 | Sculptmap |
183 | </combo_item> | 163 | </combo_item> |
184 | 164 | ||
185 | <combo_item name="type_layer" value="type_layer"> | 165 | <combo_item name="type_layer" value="type_layer"> |
186 | Clothing | 166 | Clothing |
187 | </combo_item> | 167 | </combo_item> |
188 | 168 | ||
189 | </combo_box> | 169 | </combo_box> |
190 | 170 | ||
191 | <text name="time_caption_text" | 171 | <text name="time_caption_text" |
192 | left_delta="-115" | 172 | left_delta="-115" |
193 | bottom_delta="25" | 173 | bottom_delta="25" |
194 | follows="top" | 174 | follows="left|top" |
195 | width="260" | 175 | width="260" |
196 | height="16" | 176 | height="16" |
197 | visible="false" | 177 | visible="true" |
198 | > | 178 | > |
199 | Time: | 179 | Time: |
200 | </text> | 180 | </text> |
201 | 181 | ||
202 | <text name="time_text" | 182 | <text name="time_text" |
203 | left_delta="50" | 183 | left_delta="50" |
204 | bottom_delta="0" | 184 | bottom_delta="0" |
205 | follows="top" | 185 | follows="left|top" |
206 | width="260" | 186 | width="260" |
207 | height="16" | 187 | height="16" |
208 | visible="false" | 188 | visible="true" |
209 | > | 189 | > |
210 | (date here) | 190 | (date here) |
211 | </text> | 191 | </text> |
@@ -213,21 +193,21 @@ | |||
213 | <text name="link_caption_text" | 193 | <text name="link_caption_text" |
214 | left_delta="-50" | 194 | left_delta="-50" |
215 | bottom_delta="20" | 195 | bottom_delta="20" |
216 | follows="top" | 196 | follows="left|top" |
217 | width="260" | 197 | width="260" |
218 | height="16" | 198 | height="16" |
219 | visible="false" | 199 | visible="true" |
220 | > | 200 | > |
221 | Link: | 201 | Link: |
222 | </text> | 202 | </text> |
223 | 203 | ||
224 | <text name="link_text" | 204 | <text name="link_text" |
225 | left_delta="50" | 205 | left_delta="50" |
226 | bottom_delta="0" | 206 | bottom_delta="0" |
227 | follows="top" | 207 | follows="left|top" |
228 | width="260" | 208 | width="260" |
229 | height="16" | 209 | height="16" |
230 | visible="false" | 210 | visible="true" |
231 | > | 211 | > |
232 | (link status) | 212 | (link status) |
233 | </text> | 213 | </text> |
@@ -235,10 +215,10 @@ | |||
235 | <text name="name_caption_text" | 215 | <text name="name_caption_text" |
236 | left_delta="-50" | 216 | left_delta="-50" |
237 | bottom_delta="20" | 217 | bottom_delta="20" |
238 | follows="top" | 218 | follows="left|top" |
239 | width="260" | 219 | width="260" |
240 | height="16" | 220 | height="16" |
241 | visible="false" | 221 | visible="true" |
242 | > | 222 | > |
243 | Name: | 223 | Name: |
244 | </text> | 224 | </text> |
@@ -248,14 +228,14 @@ | |||
248 | border_style="line" | 228 | border_style="line" |
249 | border_thickness="1" | 229 | border_thickness="1" |
250 | mouse_opaque="true" | 230 | mouse_opaque="true" |
251 | follows="top" | 231 | follows="left|top" |
252 | height="16" | 232 | height="16" |
253 | bottom_delta="0" | 233 | bottom_delta="0" |
254 | left_delta="50" | 234 | left_delta="50" |
255 | name="name_text" | 235 | name="name_text" |
256 | select_all_on_focus_received="true" | 236 | select_all_on_focus_received="true" |
257 | width="150" | 237 | width="150" |
258 | visible="false" | 238 | visible="true" |
259 | /> | 239 | /> |
260 | 240 | ||
261 | </floater> | 241 | </floater> |
diff --git a/linden/indra/newview/skins/default/xui/en-us/floater_texture_ctrl.xml b/linden/indra/newview/skins/default/xui/en-us/floater_texture_ctrl.xml index 247e0da..f42ed9f 100644 --- a/linden/indra/newview/skins/default/xui/en-us/floater_texture_ctrl.xml +++ b/linden/indra/newview/skins/default/xui/en-us/floater_texture_ctrl.xml | |||
@@ -63,7 +63,7 @@ | |||
63 | follows="left|top|right|bottom" height="245" left="0" mouse_opaque="true" | 63 | follows="left|top|right|bottom" height="245" left="0" mouse_opaque="true" |
64 | name="inventory panel" sort_order="TexturePickerSortOrder" width="271" /> | 64 | name="inventory panel" sort_order="TexturePickerSortOrder" width="271" /> |
65 | </panel> | 65 | </panel> |
66 | <panel border="false" bottom_delta="0" follows="left|top" height="300" label="My Computer" left="175" mouse_opaque="false" name="local_tab" width="410"> | 66 | <panel border="false" bottom_delta="0" follows="left|top" height="300" label="Computer" left="175" mouse_opaque="false" name="local_tab" width="410"> |
67 | <!-- tag: vaa emerald local_asset_browser [begin] --> | 67 | <!-- tag: vaa emerald local_asset_browser [begin] --> |
68 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 68 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
69 | bottom_delta="-20" drop_shadow_visible="true" enabled="true" follows="left|top" | 69 | bottom_delta="-20" drop_shadow_visible="true" enabled="true" follows="left|top" |
@@ -81,7 +81,7 @@ | |||
81 | name="Remove" scale_image="true" width="70" visible="true" /> | 81 | name="Remove" scale_image="true" width="70" visible="true" /> |
82 | <button bottom_delta="0" enabled="true" follows="left|top" | 82 | <button bottom_delta="0" enabled="true" follows="left|top" |
83 | font="SansSerifSmall" halign="center" height="20" | 83 | font="SansSerifSmall" halign="center" height="20" |
84 | label="More Info" left_delta="103" mouse_opaque="true" | 84 | label="Properties..." left_delta="103" mouse_opaque="true" |
85 | name="Browser" scale_image="true" width="90" visible="true" /> | 85 | name="Browser" scale_image="true" width="90" visible="true" /> |
86 | <scroll_list | 86 | <scroll_list |
87 | name="local_name_list" | 87 | name="local_name_list" |