1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 02:58:02 -06:00

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

View File

@@ -550,7 +550,7 @@ static void InitMainDialog (HWND hwndDlg)
if (mainHeigth < correctHeigth) 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);
} }
} }
} }