|
@@ -640,6 +640,9 @@ void FindInFilesPanel::stop_search() {
|
|
void FindInFilesPanel::_notification(int p_what) {
|
|
void FindInFilesPanel::_notification(int p_what) {
|
|
if (p_what == NOTIFICATION_PROCESS) {
|
|
if (p_what == NOTIFICATION_PROCESS) {
|
|
_progress_bar->set_as_ratio(_finder->get_progress());
|
|
_progress_bar->set_as_ratio(_finder->get_progress());
|
|
|
|
+ } else if (p_what == NOTIFICATION_THEME_CHANGED) {
|
|
|
|
+ _search_text_label->add_font_override("font", get_font("source", "EditorFonts"));
|
|
|
|
+ _results_display->add_font_override("font", get_font("source", "EditorFonts"));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|