From 6d0e8fa9bfc8bd6805fb6f61e402e1a80e1fbd8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erkan=20I=C5=9EIK?= Date: Wed, 24 Jun 2026 08:37:18 +0300 Subject: [PATCH] fix: language selector SVG icon now uses theme text color (tint) --- src/funct.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/funct.rs b/src/funct.rs index 7e60b90..f336711 100644 --- a/src/funct.rs +++ b/src/funct.rs @@ -127,6 +127,7 @@ pub fn language_selector_ui(ui: &mut eframe::egui::Ui, state: &mut crate::instal ui.add( eframe::egui::Image::new(eframe::egui::include_image!("../assets/icons/language-icon.svg")) .max_width(40.0) + .tint(crate::ui::theme::c_text()) ); });