Steps:
- Check "Enable theme support (experimental)" and restart.
- Uncheck "Enable theme support (experimental)" and restart.
The Graphs color is still in dark mode:
Expected:
The backgroud should be reset, too.
|
if (PhGetIntegerSetting(SETTING_ENABLE_THEME_SUPPORT)) // PhGetIntegerSetting required (dmex) |
|
{ |
|
PhSetIntegerSetting(SETTING_GRAPH_COLOR_MODE, 1); // HACK switch to dark theme. (dmex) |
|
} |
|
|
Should we append the following code after it?
else
{
PhSetIntegerSetting(SETTING_GRAPH_COLOR_MODE, 0);
}
Steps:
The Graphs color is still in dark mode:
Expected:
The backgroud should be reset, too.
systeminformer/SystemInformer/options.c
Lines 1730 to 1734 in 2df5e68
Should we append the following code after it?