Updated the channel list theme application to honor explicit light mode selection so it applies the light palette instead of staying dark.

This commit is contained in:
2026-01-18 01:21:51 -07:00
parent 35ecc2c643
commit 6137fdbd91

View File

@@ -122,7 +122,7 @@ chanview_apply_theme (chanview *cv)
return;
w = GTK_WIDGET (tv->tree);
if (fe_dark_mode_is_enabled ())
if (fe_dark_mode_is_enabled () || prefs.hex_gui_dark_mode == ZOITECHAT_DARK_MODE_LIGHT)
{
gtk_widget_modify_base (w, GTK_STATE_NORMAL, &colors[COL_BG]);
gtk_widget_modify_text (w, GTK_STATE_NORMAL, &colors[COL_FG]);