Dump hotkeys for obscure debugging stuff, to free them up for other things.

This commit is contained in:
David Walter Seikel
2013-05-25 11:59:42 +10:00
parent 0334b87b9c
commit 0d5f83ff72
2 changed files with 8 additions and 14 deletions
+4 -4
View File
@@ -1098,10 +1098,10 @@ void init_debug_ui_menu(LLMenuGL* menu)
menu->append(new LLMenuItemCallGL("Editable UI", &edit_ui));
menu->append(new LLMenuItemCallGL( "Dump SelectMgr", &dump_select_mgr));
menu->append(new LLMenuItemCallGL( "Dump Inventory", &dump_inventory));
menu->append(new LLMenuItemCallGL( "Dump Focus Holder", &handle_dump_focus, NULL, NULL, 'F', MASK_ALT | MASK_CONTROL));
menu->append(new LLMenuItemCallGL( "Print Selected Object Info", &print_object_info, NULL, NULL, 'P', MASK_CONTROL|MASK_SHIFT ));
menu->append(new LLMenuItemCallGL( "Print Agent Info", &print_agent_nvpairs, NULL, NULL, 'P', MASK_SHIFT ));
menu->append(new LLMenuItemCallGL( "Memory Stats", &output_statistics, NULL, NULL, 'M', MASK_SHIFT | MASK_ALT | MASK_CONTROL));
menu->append(new LLMenuItemCallGL( "Dump Focus Holder", &handle_dump_focus));
menu->append(new LLMenuItemCallGL( "Print Selected Object Info", &print_object_info));
menu->append(new LLMenuItemCallGL( "Print Agent Info", &print_agent_nvpairs));
menu->append(new LLMenuItemCallGL( "Memory Stats", &output_statistics));
menu->append(new LLMenuItemCheckGL("Double-Click Auto-Pilot",
menu_toggle_control, NULL, menu_check_control,
(void*)"DoubleClickAutoPilot"));
@@ -1654,23 +1654,17 @@
<menu_item_call name="Dump Inventory" label="Dump Inventory">
<on_click function="Advanced.DumpInventory" userdata="" />
</menu_item_call>
<menu_item_call name="Dump Focus Holder"
label="Dump Focus Holder"
shortcut="control|alt|F">
<menu_item_call name="Dump Focus Holder" label="Dump Focus Holder">
<on_click function="Advanced.DumpFocusHolder" userdata="" />
</menu_item_call>
<menu_item_call name="Print Selected Object Info"
label="Print Selected Object Info"
shortcut="control|shift|P">
<menu_item_call name="Print Selected Object Info" label="Print Selected Object Info">
<on_click function="Advanced.PrintSelectedObjectInfo"
userdata="" />
</menu_item_call>
<menu_item_call name="Print Agent Info"
label="Print Agent Info" shortcut="shift|P">
<menu_item_call name="Print Agent Info" label="Print Agent Info">
<on_click function="Advanced.PrintAgentInfo" userdata="" />
</menu_item_call>
<menu_item_call name="Memory Stats" label="Memory Stats"
shortcut="control|alt|shift|M">
<menu_item_call name="Memory Stats" label="Memory Stats">
<on_click function="Advanced.PrintTextureMemoryStats"
userdata="" />
</menu_item_call>