VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Mount
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2018-09-03 11:39:39 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2018-09-03 11:45:09 +0200
commit2730fa33a24f3c28611bbc2ec693667cc821c1b5 (patch)
treec152a0e763c43accc847d72ce164f9dfeab255b8 /src/Mount
parent33bdbde8dc75b933cfb85e2f9a49458e25682e61 (diff)
downloadVeraCrypt-2730fa33a24f3c28611bbc2ec693667cc821c1b5.tar.gz
VeraCrypt-2730fa33a24f3c28611bbc2ec693667cc821c1b5.zip
Windows: fix regression causing VeraCrypt UI to always be displayed upon logon
Diffstat (limited to 'src/Mount')
-rw-r--r--src/Mount/Mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c
index a1543b61..ebae35f8 100644
--- a/src/Mount/Mount.c
+++ b/src/Mount/Mount.c
@@ -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);
}
}
}