mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
display: Fix moving grab op check
We were regarding META_GRAB_OP_KEYBOARD_RESIZING_UNKNOWN as a move. https://bugzilla.gnome.org/show_bug.cgi?id=743254
This commit is contained in:
parent
08ba9c689e
commit
6772758a64
@ -1214,7 +1214,7 @@ meta_grab_op_is_moving (MetaGrabOp op)
|
||||
if (!grab_op_is_window (op))
|
||||
return FALSE;
|
||||
|
||||
return (op & META_GRAB_OP_WINDOW_DIR_MASK) == 0;
|
||||
return !meta_grab_op_is_resizing (op);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user