From db9de5de43609b7fc74c9fd4ef52a77e613e636f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Wed, 1 Apr 2009 17:55:04 +0000 Subject: [PATCH] As Michael correctly pointed out, there is no reason for the window to be not resizable, since it will even nicely relayout itself on size changes. Some pages can be resized too small, but anyways, that can be improved. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29854 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bootman/BootManagerWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/bootman/BootManagerWindow.cpp b/src/apps/bootman/BootManagerWindow.cpp index 9fb483123e..08dcb0ed74 100644 --- a/src/apps/bootman/BootManagerWindow.cpp +++ b/src/apps/bootman/BootManagerWindow.cpp @@ -22,7 +22,7 @@ BootManagerWindow::BootManagerWindow() : BWindow(BRect(100, 100, 500, 400), "Boot Manager", B_TITLED_WINDOW, - B_ASYNCHRONOUS_CONTROLS | B_NOT_RESIZABLE | B_NOT_ZOOMABLE) + B_ASYNCHRONOUS_CONTROLS | B_NOT_ZOOMABLE) { float minWidth, maxWidth, minHeight, maxHeight; GetSizeLimits(&minWidth, &maxWidth, &minHeight, &maxHeight);