* Fixed broken accept-first-click eating logic I introduced yesterday, sorry!

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37893 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2010-08-04 08:10:07 +00:00
parent 3596a9aa08
commit 2248e30f11

View File

@ -813,7 +813,7 @@ Window::MouseDown(BMessage* message, BPoint where, int32* _viewToken)
// TODO: the latter is unlike BeOS - if we really wanted to
// imitate this behaviour, we would need to check if we're
// the front window instead of the focus window
if ((!acceptFirstClick || !desktopSettings.AcceptFirstClick())
if (!acceptFirstClick && !desktopSettings.AcceptFirstClick()
&& !avoidFocus)
return;
}