[Input] Add extra shortcut_input input processing step to process Unicode character input with Alt / Ctrl modifiers, after processing of shortcuts.
This commit is contained in:
@ -1903,7 +1903,7 @@ void ProjectManager::_notification(int p_what) {
|
||||
} break;
|
||||
|
||||
case NOTIFICATION_VISIBILITY_CHANGED: {
|
||||
set_process_unhandled_key_input(is_visible_in_tree());
|
||||
set_process_shortcut_input(is_visible_in_tree());
|
||||
} break;
|
||||
|
||||
case NOTIFICATION_WM_CLOSE_REQUEST: {
|
||||
@ -1962,7 +1962,7 @@ void ProjectManager::_update_project_buttons() {
|
||||
erase_missing_btn->set_disabled(!_project_list->is_any_project_missing());
|
||||
}
|
||||
|
||||
void ProjectManager::unhandled_key_input(const Ref<InputEvent> &p_ev) {
|
||||
void ProjectManager::shortcut_input(const Ref<InputEvent> &p_ev) {
|
||||
ERR_FAIL_COND(p_ev.is_null());
|
||||
|
||||
Ref<InputEventKey> k = p_ev;
|
||||
|
||||
Reference in New Issue
Block a user