You've already forked godot
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user