Merge pull request #46371 from EricEzaM/PR/fix-osx-inputmap-spammed-errors

Fixed 'nonexistent action' errors spammed at startup on OSX
This commit is contained in:
Rémi Verschelde 2021-02-24 16:52:52 +01:00 committed by GitHub
commit 65305ea001
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -694,7 +694,7 @@ void InputMap::load_default() {
// For the editor, only add keyboard actions.
if (iek.is_valid()) {
action_add_event(fullname, I->get());
action_add_event(name, I->get());
}
}
}

View File

@ -1578,11 +1578,11 @@ void RichTextLabel::_gui_input(Ref<InputEvent> p_event) {
if (k->is_pressed()) {
bool handled = false;
if (k->is_action("ui_pageup") && vscroll->is_visible_in_tree()) {
if (k->is_action("ui_page_up") && vscroll->is_visible_in_tree()) {
vscroll->set_value(vscroll->get_value() - vscroll->get_page());
handled = true;
}
if (k->is_action("ui_pagedown") && vscroll->is_visible_in_tree()) {
if (k->is_action("ui_page_down") && vscroll->is_visible_in_tree()) {
vscroll->set_value(vscroll->get_value() + vscroll->get_page());
handled = true;
}