Skip to content

Commit

Permalink
Bind Z key (without modifiers) to toggle wireframe in 3D view
Browse files Browse the repository at this point in the history
Fixed #4124
  • Loading branch information
bojidar-bg committed Apr 6, 2016
1 parent 646e089 commit 8ee8802
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tools/editor/plugins/spatial_editor_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3602,6 +3602,17 @@ void SpatialEditor::_unhandled_key_input(InputEvent p_event) {
case KEY_E: _menu_item_pressed(MENU_TOOL_ROTATE); break;
case KEY_R: _menu_item_pressed(MENU_TOOL_SCALE); break;

case KEY_Z: {
if (k.mod.shift || k.mod.control || k.mod.command)
break;

if (view_menu->get_popup()->is_item_checked( view_menu->get_popup()->get_item_index(MENU_VIEW_DISPLAY_WIREFRAME))) {
_menu_item_pressed(MENU_VIEW_DISPLAY_NORMAL);
} else {
_menu_item_pressed(MENU_VIEW_DISPLAY_WIREFRAME);
}
} break;

#if 0
#endif
}
Expand Down

0 comments on commit 8ee8802

Please sign in to comment.