From 9fe0cc5965f4a9ce75b85293ff0a42c55216cf71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Tue, 6 Dec 2005 23:25:28 +0000 Subject: [PATCH] was there any particular reason why BAlerts were old style synchronous controls BWindows? git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15387 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/Alert.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kits/interface/Alert.cpp b/src/kits/interface/Alert.cpp index 9e97209991..cb71ff877c 100644 --- a/src/kits/interface/Alert.cpp +++ b/src/kits/interface/Alert.cpp @@ -141,7 +141,7 @@ BAlert::BAlert(const char *title, const char *text, const char *button1, const char *button2, const char *button3, button_width width, alert_type type) : BWindow(DEFAULT_RECT, title, B_MODAL_WINDOW, - B_NOT_CLOSABLE | B_NOT_RESIZABLE) + B_NOT_CLOSABLE | B_NOT_RESIZABLE | B_ASYNCHRONOUS_CONTROLS) { InitObject(text, button1, button2, button3, width, B_EVEN_SPACING, type); } @@ -151,7 +151,7 @@ BAlert::BAlert(const char *title, const char *text, const char *button1, const char *button2, const char *button3, button_width width, button_spacing spacing, alert_type type) : BWindow(DEFAULT_RECT, title, B_MODAL_WINDOW, - B_NOT_CLOSABLE | B_NOT_RESIZABLE) + B_NOT_CLOSABLE | B_NOT_RESIZABLE | B_ASYNCHRONOUS_CONTROLS) { InitObject(text, button1, button2, button3, width, spacing, type); }