All submissions to this site are governed by the Second Life Viewer Contribution Agreement. By submitting patches and other information using this site, you acknowledge that you have read, understood, and agreed to those terms.

Review Board 1.6.11

Welcome to the Second Life Viewer Code Review tool.
See the documentation on our wiki for how to use this site.

STORM-1845: Move "Show HUD Attachments" (Alt+Shift+H) from Advanced-> "Highlighting and Visibility" to Me - menu

Review Request #582 - Created June 4, 2012 and submitted

MartinRJ Fayray Reviewers
3.3.2 viewer
STORM-1845 oz.linden
None viewer-release
Moved the option to enable/disable the visibility of HUD attachments to the Me- menu.

 

Diff revision 1 (Latest)

  1. indra/newview/skins/default/xui/en/menu_viewer.xml: Loading...
indra/newview/skins/default/xui/en/menu_viewer.xml
Revision 29143d1fc6fa New Change
... 185 lines hidden [Expand]
186
             function="Floater.Toggle"
186
             function="Floater.Toggle"
187
             parameter="toybox" />
187
             parameter="toybox" />
188
        </menu_item_call>
188
        </menu_item_call>
189
         <menu_item_call
189
         <menu_item_call
190
         label="Hide all controls"
190
         label="Hide all controls"
191
         name="Hide UI"
191
         name="Hide UI"
192
         shortcut="control|shift|U">
192
         shortcut="control|shift|U">
193
           <menu_item_call.on_click
193
           <menu_item_call.on_click
194
            function="View.ToggleUI" />
194
            function="View.ToggleUI" />
195
         </menu_item_call>
195
         </menu_item_call>

   
196
         <menu_item_check

   
197
         label="Show HUD Attachments"

   
198
         name="Show HUD Attachments"

   
199
         shortcut="alt|shift|H">

   
200
           <menu_item_check.on_check

   
201
            function="View.CheckHUDAttachments" />

   
202
            <menu_item_check.on_click

   
203
             function="View.ShowHUDAttachments" />

   
204
         </menu_item_check>
196

   
205

   
197
        <menu_item_separator/>
206
        <menu_item_separator/>
198

   
207

   
199
        <menu_item_call
208
        <menu_item_call
200
         label="Exit [APP_NAME]"
209
         label="Exit [APP_NAME]"
201
         name="Quit"
210
         name="Quit"
202
         shortcut="control|Q">
211
         shortcut="control|Q">
203
            <menu_item_call.on_click
212
            <menu_item_call.on_click
204
             function="File.Quit" />
213
             function="File.Quit" />
205
        </menu_item_call>
214
        </menu_item_call>
... 1161 lines hidden [Expand]
1367
            <menu_item_check
1376
            <menu_item_check
1368
             label="Highlight Transparent"
1377
             label="Highlight Transparent"
1369
             name="Highlight Transparent"
1378
             name="Highlight Transparent"
1370
             shortcut="control|alt|T">
1379
             shortcut="control|alt|T">
1371
                <menu_item_check.on_check
1380
                <menu_item_check.on_check
1372
                 function="View.CheckHighlightTransparent" />
1381
                 function="View.CheckHighlightTransparent" />
1373
                <menu_item_check.on_click
1382
                <menu_item_check.on_click
1374
                 function="View.HighlightTransparent" />
1383
                 function="View.HighlightTransparent" />
1375
            </menu_item_check>
1384
            </menu_item_check>
1376
            <menu_item_check
1385
            <menu_item_check
1377
             label="Show HUD Attachments"

   
1378
             name="Show HUD Attachments"

   
1379
             shortcut="alt|shift|H">

   
1380
                <menu_item_check.on_check

   
1381
                 function="View.CheckHUDAttachments" />

   
1382
                <menu_item_check.on_click

   
1383
                 function="View.ShowHUDAttachments" />

   
1384
            </menu_item_check>

   
1385
            <menu_item_check

   
1386
             label="Show Mouselook Crosshairs"
1386
             label="Show Mouselook Crosshairs"
1387
             name="ShowCrosshairs">
1387
             name="ShowCrosshairs">
1388
                <menu_item_check.on_check
1388
                <menu_item_check.on_check
1389
                 function="CheckControl"
1389
                 function="CheckControl"
1390
                 parameter="ShowCrosshairs" />
1390
                 parameter="ShowCrosshairs" />
1391
                <menu_item_check.on_click
1391
                <menu_item_check.on_click
1392
                 function="ToggleControl"
1392
                 function="ToggleControl"
1393
                 parameter="ShowCrosshairs" />
1393
                 parameter="ShowCrosshairs" />
1394
            </menu_item_check>
1394
            </menu_item_check>
1395
  <!-- <menu
1395
  <!-- <menu
... 2340 lines hidden [Expand]
  1. indra/newview/skins/default/xui/en/menu_viewer.xml: Loading...