Xavier > 2025-07-14 01:24

Jean Lalonde > 2025-07-14 07:12
ormanno > 2025-09-21 23:12
Xavier > 2025-09-22 21:30
Jean Lalonde > 2025-11-19 16:48
Xavier > 2025-11-20 02:46
Jean Lalonde > 2025-11-20 08:09
Xavier > 2025-12-04 21:29
![[Image: YXhva07.png]](https://i.imgur.com/YXhva07.png)
GuiControl, Focus, f_lvFavoritesList
RegRead, g_blnLightMode, HKCU, SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize, AppsUseLightTheme
if (o_Settings.SettingsWindow.blnDarkMode.IniValue and !g_blnLightMode)
{
WinGet, strControlList, ControlList, ahk_id %g_strGui1Hwnd%
Gui, Color, %g_intWindowColor%, %g_intControlColor%
for strKey, strControl in StrSplit(strControlList,"`n","`r`n")
{
ControlGet, strControlHwnd, HWND, , %strControl%, ahk_id %g_strGui1Hwnd%
if InStr(strControl, "ListView")
{
GuiControl, +Background%g_intWindowColor%, %strControl%
Gui, Font, c%g_intControlColor% s%intListViewFontSize%, Verdana ;; <--- there is a static font set here that will override any font set above it ??
GuiControl, Font, %strControl%
}
if InStr(strControl, "Static")
{
Gui, Font, c%g_intControlColor% s%intLabelFontSize%, Arial
GuiControl, Font, %strControl%
}
}
}
saSettingsPosition := ""
strTextColor := ""
returnJean Lalonde > 2025-12-05 18:04
Jean Lalonde > 2025-12-06 10:39
Xavier > 2025-12-07 02:18
this looks great! thank you kindly! i appreciate it.