mirror of
https://github.com/brl/mutter.git
synced 2025-08-06 16:44:40 +00: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:
@@ -1214,7 +1214,7 @@ meta_grab_op_is_moving (MetaGrabOp op)
|
|||||||
if (!grab_op_is_window (op))
|
if (!grab_op_is_window (op))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
return (op & META_GRAB_OP_WINDOW_DIR_MASK) == 0;
|
return !meta_grab_op_is_resizing (op);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user