mirror of
https://github.com/brl/mutter.git
synced 2024-11-13 01:36:10 -05:00
drag-action: Capture stage leave
If we are dragging, we don't want the drag handle to emit a ::leave-event even if the pointer left the stage.
This commit is contained in:
parent
1ec577438e
commit
9ab83cebfd
@ -267,6 +267,11 @@ on_captured_event (ClutterActor *stage,
|
||||
emit_drag_end (action, actor, event);
|
||||
break;
|
||||
|
||||
case CLUTTER_LEAVE:
|
||||
if (priv->in_drag)
|
||||
return TRUE;
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user