Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
- Removed ListView subclass
- Add options: EnableThemeAnimation (default 1), EnableThemeNativeButtons (default 0)
  • Loading branch information
DartVanya committed Oct 11, 2024
1 parent 0068548 commit 8bc49f8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion SystemInformer/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,10 @@ INT WINAPI wWinMain(
}

PhGuiSupportInitialization();
PhpInitializeSettings();
if (!PhStartupParameters.Debug)
{
PhpInitializeSettings();
}

if (PhGetIntegerSetting(L"AllowOnlyOneInstance") &&
!PhStartupParameters.NewInstance &&
Expand Down Expand Up @@ -1489,6 +1492,7 @@ VOID PhpProcessStartupParameters(
if (PhStartupParameters.Debug)
{
// The symbol provider won't work if this is chosen.
PhpInitializeSettings();
PhShowDebugConsole();
}
}
Expand Down

0 comments on commit 8bc49f8

Please sign in to comment.