Merge pull request #3356 from neikeq/qwe_dialog

Spatial/Canvas Editor: Ignore unhandled input if there is a dialog
This commit is contained in:
Rémi Verschelde 2016-01-15 12:17:06 +01:00
commit bbeac36cb5
2 changed files with 3 additions and 3 deletions

View File

@ -194,7 +194,7 @@ void CanvasItemEditor::_edit_set_pivot(const Vector2& mouse_pos) {
void CanvasItemEditor::_unhandled_key_input(const InputEvent& p_ev) {
if (!is_visible())
if (!is_visible() || window_has_modal_stack())
return;
if (p_ev.key.mod.control)
// prevent to change tool mode when control key is pressed

View File

@ -3529,7 +3529,7 @@ void SpatialEditor::_instance_scene() {
void SpatialEditor::_unhandled_key_input(InputEvent p_event) {
if (!is_visible())
if (!is_visible() || window_has_modal_stack())
return;
{