[RAPPS] Open "Installed" section in Appwiz-mode when RAPPS already runs

CORE-18981
This commit is contained in:
Stanislav Motylkov 2023-05-22 01:40:56 +03:00
parent ff1fa4f38a
commit acbb73a89d
4 changed files with 12 additions and 1 deletions

View file

@ -259,6 +259,8 @@ ParseCmdAndExecute(LPWSTR lpCmdLine, BOOL bIsFirstLaunch, int nCmdShow)
/* Activate window */
ShowWindow(hWindow, SW_SHOWNORMAL);
SetForegroundWindow(hWindow);
if (bAppwizMode)
PostMessage(hWindow, WM_COMMAND, ID_ACTIVATE_APPWIZ, 0);
return FALSE;
}