1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-22 15:06:45 +00:00

Selectively apply FOCUS_ACCESSIBILITY to the Labels instead of setting it by default.

This commit is contained in:
Pāvels Nadtočajevs
2025-04-22 11:57:16 +03:00
parent 1696ab0cb6
commit 5b49fd4207
84 changed files with 159 additions and 14 deletions

View File

@@ -593,6 +593,7 @@ FindInFilesPanel::FindInFilesPanel() {
hbc->add_child(find_label);
_search_text_label = memnew(Label);
_search_text_label->set_focus_mode(FOCUS_ACCESSIBILITY);
hbc->add_child(_search_text_label);
_progress_bar = memnew(ProgressBar);
@@ -602,6 +603,7 @@ FindInFilesPanel::FindInFilesPanel() {
set_progress_visible(false);
_status_label = memnew(Label);
_status_label->set_focus_mode(FOCUS_ACCESSIBILITY);
hbc->add_child(_status_label);
_refresh_button = memnew(Button);