display: Expose meta_grab_op_is_mouse_only

And use it properly in some event handling code.
This commit is contained in:
Jasper St. Pierre
2014-04-20 11:41:22 -04:00
parent e55dd4e3f4
commit beca90a689
3 changed files with 5 additions and 4 deletions

View File

@@ -1148,8 +1148,8 @@ meta_get_display (void)
return the_display;
}
static gboolean
grab_op_is_mouse_only (MetaGrabOp op)
gboolean
meta_grab_op_is_mouse_only (MetaGrabOp op)
{
switch (op)
{
@@ -1915,7 +1915,7 @@ meta_display_begin_grab_op (MetaDisplay *display,
}
/* Grab keys for keyboard ops and mouse move/resizes; see #126497 */
if (meta_grab_op_is_keyboard (op) || grab_op_is_mouse_only (op))
if (meta_grab_op_is_keyboard (op) || meta_grab_op_is_mouse_only (op))
{
if (grab_window)
display->grab_have_keyboard =