Merge pull request #64871 from Chaosus/editor_theming_fix

This commit is contained in:
Rémi Verschelde 2022-08-25 10:13:13 +02:00 committed by GitHub
commit c15f2ebadd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1061,6 +1061,9 @@ void ActionMapEditor::_notification(int p_what) {
case NOTIFICATION_ENTER_TREE: case NOTIFICATION_ENTER_TREE:
case NOTIFICATION_THEME_CHANGED: { case NOTIFICATION_THEME_CHANGED: {
action_list_search->set_right_icon(get_theme_icon(SNAME("Search"), SNAME("EditorIcons"))); action_list_search->set_right_icon(get_theme_icon(SNAME("Search"), SNAME("EditorIcons")));
if (!actions_cache.is_empty()) {
update_action_list();
}
} break; } break;
} }
} }