* 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
This commit is contained in:
parent
e2040be893
commit
85dbe55d9b
@ -1540,7 +1540,7 @@ Window::HasInSubset(const Window* window) const
|
|||||||
// we have a few special feels that have a fixed order
|
// we have a few special feels that have a fixed order
|
||||||
|
|
||||||
const int32 kFeels[] = {kPasswordWindowFeel, kWindowScreenFeel,
|
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;
|
for (uint32 order = 0;
|
||||||
order < sizeof(kFeels) / sizeof(kFeels[0]); order++) {
|
order < sizeof(kFeels) / sizeof(kFeels[0]); order++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user