keystore_server: Add missing B_NOT_MINIMIZABLE on requests.

The application access and key request windows were minimizable without
a way to get them back. Fixes #11313.
This commit is contained in:
Michael Lotz
2014-10-05 23:04:38 +02:00
parent 6f9eb8d1bb
commit 33046f3a8c
2 changed files with 2 additions and 2 deletions
@@ -134,7 +134,7 @@ AppAccessRequestWindow::AppAccessRequestWindow(const char* keyringName,
:
BWindow(BRect(50, 50, 269, 302), "Application Keyring Access",
B_TITLED_WINDOW, B_NOT_RESIZABLE | B_ASYNCHRONOUS_CONTROLS
| B_NOT_ZOOMABLE | B_AUTO_UPDATE_SIZE_LIMITS),
| B_NOT_ZOOMABLE | B_NOT_MINIMIZABLE | B_AUTO_UPDATE_SIZE_LIMITS),
fRequestView(NULL),
fDoneSem(-1),
fResult(kMessageDisallow)
+1 -1
View File
@@ -149,7 +149,7 @@ KeyRequestWindow::KeyRequestWindow()
:
BWindow(BRect(50, 50, 269, 302), "Unlock Keyring",
B_TITLED_WINDOW, B_NOT_RESIZABLE | B_ASYNCHRONOUS_CONTROLS
| B_NOT_ZOOMABLE | B_AUTO_UPDATE_SIZE_LIMITS),
| B_NOT_ZOOMABLE | B_NOT_MINIMIZABLE | B_AUTO_UPDATE_SIZE_LIMITS),
fRequestView(NULL),
fDoneSem(-1),
fResult(B_ERROR)