Windows: fix regression causing VeraCrypt UI to always be displayed upon logon

This commit is contained in:
Mounir IDRASSI 2018-09-03 11:39:39 +02:00
parent 33bdbde8dc
commit 2730fa33a2
No known key found for this signature in database
GPG Key ID: DD0C382D5FCFB8FC
1 changed files with 1 additions and 1 deletions

View File

@ -550,7 +550,7 @@ static void InitMainDialog (HWND hwndDlg)
if (mainHeigth < correctHeigth)
{
SetWindowPos (hwndDlg, NULL, 0, 0, mainWidth, correctHeigth , SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOMOVE | SWP_SHOWWINDOW);
SetWindowPos (hwndDlg, NULL, 0, 0, mainWidth, correctHeigth , SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOMOVE);
}
}
}