Merge pull request #3408 from neikeq/issue_1123_fix
EditorNode: Ignore unhandled input if there is a dialog visible
This commit is contained in:
commit
14c1d7fef0
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ void EditorNode::_update_title() {
|
|||
|
||||
void EditorNode::_unhandled_input(const InputEvent& p_event) {
|
||||
|
||||
if (p_event.type==InputEvent::KEY && p_event.key.pressed && !p_event.key.echo) {
|
||||
if (p_event.type==InputEvent::KEY && p_event.key.pressed && !p_event.key.echo && !gui_base->get_viewport()->gui_has_modal_stack()) {
|
||||
|
||||
switch(p_event.key.scancode) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue