From 85dbe55d9b536c77d1510731f1ef3f5d6dd2d5cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 24 Oct 2008 10:02:12 +0000 Subject: [PATCH] * r28281 accidently added the B_NORMAL_WINDOW_FEEL (0) to the list of special feels. This caused floating/modal app and subset windows to not work anymore. * This fixes bug #2914. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28309 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/servers/app/Window.cpp b/src/servers/app/Window.cpp index dc2896a912..cacfd23ae1 100644 --- a/src/servers/app/Window.cpp +++ b/src/servers/app/Window.cpp @@ -1540,7 +1540,7 @@ Window::HasInSubset(const Window* window) const // we have a few special feels that have a fixed order const int32 kFeels[] = {kPasswordWindowFeel, kWindowScreenFeel, - B_MODAL_ALL_WINDOW_FEEL, B_FLOATING_ALL_WINDOW_FEEL, 0}; + B_MODAL_ALL_WINDOW_FEEL, B_FLOATING_ALL_WINDOW_FEEL}; for (uint32 order = 0; order < sizeof(kFeels) / sizeof(kFeels[0]); order++) {