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:
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user