mirror of
https://github.com/elementary/gala.git
synced 2024-11-25 03:06:14 +01:00
DragDropAction: Release hovered reference when finishing the action (#1979)
This commit is contained in:
parent
7bb7908724
commit
78180827ba
@ -86,7 +86,7 @@ namespace Gala {
|
||||
*/
|
||||
public string drag_id { get; construct; }
|
||||
|
||||
public Actor handle { get; private set; }
|
||||
public Actor? handle { get; private set; }
|
||||
/**
|
||||
* Indicates whether a drag action is currently active
|
||||
*/
|
||||
@ -241,6 +241,7 @@ namespace Gala {
|
||||
} else if (dragging) {
|
||||
if (hovered != null) {
|
||||
finish ();
|
||||
hovered = null;
|
||||
} else {
|
||||
cancel ();
|
||||
}
|
||||
@ -460,6 +461,7 @@ namespace Gala {
|
||||
}
|
||||
|
||||
dragging = false;
|
||||
handle = null;
|
||||
}
|
||||
|
||||
private bool is_valid_touch_event (Clutter.Event event) {
|
||||
|
Loading…
Reference in New Issue
Block a user