diff options
author | Bernhard Liebl <Bernhard.Liebl@gmx.org> | 2017-12-04 13:44:30 +0100 |
---|---|---|
committer | Bernhard Liebl <Bernhard.Liebl@gmx.org> | 2017-12-04 13:44:30 +0100 |
commit | ca7e9c034882aa409d04c6921572e1845ba8bf0f (patch) | |
tree | 1c058518fada6bfa22b73f38dbbba7a2196ec458 | |
parent | 055c5600c8877ebe44c80fa853cca4b6b553eb0a (diff) |
Fixes Polygon2D wip mode closing when editing mode is changed
-rw-r--r-- | editor/plugins/abstract_polygon_2d_editor.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/editor/plugins/abstract_polygon_2d_editor.cpp b/editor/plugins/abstract_polygon_2d_editor.cpp index cabdfa761d..95ae3d5aed 100644 --- a/editor/plugins/abstract_polygon_2d_editor.cpp +++ b/editor/plugins/abstract_polygon_2d_editor.cpp @@ -167,7 +167,7 @@ void AbstractPolygon2DEditor::_menu_option(int p_option) { } break; case MODE_EDIT: { - wip_active = false; + _wip_close(); mode = MODE_EDIT; button_create->set_pressed(false); button_edit->set_pressed(true); @@ -175,7 +175,7 @@ void AbstractPolygon2DEditor::_menu_option(int p_option) { } break; case MODE_DELETE: { - wip_active = false; + _wip_close(); mode = MODE_DELETE; button_create->set_pressed(false); button_edit->set_pressed(false); @@ -224,6 +224,9 @@ void AbstractPolygon2DEditor::_wip_changed() { } void AbstractPolygon2DEditor::_wip_close() { + if (!wip_active) + return; + if (_is_line()) { _set_polygon(0, wip); |