Update transform buttons in tile editor while using T, A, S shortcuts (fixes #17962)

(cherry picked from commit 0853ac2006)
This commit is contained in:
Alexander Alekseev 2018-04-04 16:02:44 +03:00 committed by Hein-Pieter van Braam
parent 2e31c9fe10
commit 0f5a3d23ea
1 changed files with 3 additions and 0 deletions

View File

@ -1142,18 +1142,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;
}