Browse Source

Merge pull request #17969 from Alexander-Alekseev/upd_xform_btns_using_shortcuts

Update transform buttons in tile editor while using T, A, S shortcuts
Rémi Verschelde 7 years ago
parent
commit
c5bb997a8f
1 changed files with 3 additions and 0 deletions
  1. 3 0
      editor/plugins/tile_map_editor_plugin.cpp

+ 3 - 0
editor/plugins/tile_map_editor_plugin.cpp

@@ -1209,18 +1209,21 @@ bool TileMapEditor::forward_gui_input(const Ref<InputEvent> &p_event) {
 		if (ED_IS_SHORTCUT("tile_map_editor/mirror_x", p_event)) {
 			flip_h = !flip_h;
 			mirror_x->set_pressed(flip_h);
+			_update_transform_buttons();
 			canvas_item_editor->update();
 			return true;
 		}
 		if (ED_IS_SHORTCUT("tile_map_editor/mirror_y", p_event)) {
 			flip_v = !flip_v;
 			mirror_y->set_pressed(flip_v);
+			_update_transform_buttons();
 			canvas_item_editor->update();
 			return true;
 		}
 		if (ED_IS_SHORTCUT("tile_map_editor/transpose", p_event)) {
 			transpose = !transpose;
 			transp->set_pressed(transpose);
+			_update_transform_buttons();
 			canvas_item_editor->update();
 			return true;
 		}