1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix updating editor icons on translation change.

This commit is contained in:
Pāvels Nadtočajevs
2025-03-27 20:11:35 +02:00
parent 594d64ec24
commit e47207ad16
7 changed files with 30 additions and 1 deletions

View File

@@ -672,6 +672,11 @@ void SpriteFramesEditor::_notification(int p_what) {
_update_show_settings();
} break;
case NOTIFICATION_LAYOUT_DIRECTION_CHANGED:
case NOTIFICATION_TRANSLATION_CHANGED: {
_update_show_settings();
} break;
case NOTIFICATION_READY: {
add_theme_constant_override("autohide", 1); // Fixes the dragger always showing up.
} break;