From e83dc450396e6c18770da5fb06f9fa115ea41eb3 Mon Sep 17 00:00:00 2001 From: MCorange Date: Sun, 11 Jan 2026 23:51:19 +0200 Subject: [PATCH] Fix missing theming on search suggestion dropdown --- xmpd-gui/src/components/song_list/header.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/xmpd-gui/src/components/song_list/header.rs b/xmpd-gui/src/components/song_list/header.rs index 36157d3..e4b482e 100644 --- a/xmpd-gui/src/components/song_list/header.rs +++ b/xmpd-gui/src/components/song_list/header.rs @@ -53,6 +53,7 @@ impl CompUi for Header { )); let frame_margin = tf.total_margin(); tf.show(ui, |ui| { + ui.style_mut().visuals.override_text_color = Some(theme.text_color); ui.with_layout(Layout::top_down_justified(Align::LEFT), |ui| { ui.set_width(resp.rect.width() - frame_margin.sum().x); let st = SearchType::from_str(&search_text);