mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[RAPPS] Reflect installation status it download dialog header.
Pointed out by Mark Jansen
This commit is contained in:
parent
a2a372398a
commit
47bbd637d8
1 changed files with 6 additions and 0 deletions
|
@ -804,7 +804,13 @@ run:
|
|||
|
||||
if (ShellExecuteExW(&shExInfo))
|
||||
{
|
||||
//reflect installation progress in the titlebar
|
||||
//TODO: make a separate string with a placeholder to include app name?
|
||||
ATL::CStringW szMsgText = LoadStatusString(DLSTATUS_INSTALLING);
|
||||
SetWindowTextW(hDlg, szMsgText.GetString());
|
||||
|
||||
DownloadsListView.SetDownloadStatus(iAppId, DLSTATUS_INSTALLING);
|
||||
|
||||
//TODO: issue an install operation separately so that the apps could be downloaded in the background
|
||||
WaitForSingleObject(shExInfo.hProcess, INFINITE);
|
||||
CloseHandle(shExInfo.hProcess);
|
||||
|
|
Loading…
Reference in a new issue