Sorry, should have tested the patch first. Now it actually works as intended.

I.e. you need to hold down exactly Ctrl+Alt for the server side window
modifiers.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33459 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2009-10-06 10:13:33 +00:00
parent a1d5d23476
commit 5a41c9fb17
+1 -1
View File
@@ -782,7 +782,7 @@ Window::MouseDown(BMessage* message, BPoint where, int32* _viewToken)
bool inBorderRegion = fBorderRegion.Contains(where);
bool windowModifier = (fFlags & B_NO_SERVER_SIDE_WINDOW_MODIFIERS) == 0
&& (modifiers & (B_COMMAND_KEY | B_CONTROL_KEY | B_OPTION_KEY
| B_SHIFT_KEY)) == B_COMMAND_KEY | B_CONTROL_KEY;
| B_SHIFT_KEY)) == (B_COMMAND_KEY | B_CONTROL_KEY);
// default action is to drag the Window
if (windowModifier || inBorderRegion) {