diff --git a/data/gala.appdata.xml.in b/data/gala.appdata.xml.in index 60ae48e61..376c0bf5b 100644 --- a/data/gala.appdata.xml.in +++ b/data/gala.appdata.xml.in @@ -34,6 +34,7 @@ Hotkeys are not working with non-EN keyboard layout Closing a window in multitasking view closes multitasking view When 2 windows are tiled and then resized, the inactive one gets glitched, leaving its full-sized picture as an artifact when minimized + Picture-in-Picture drag seems to snap to a grid diff --git a/lib/DragDropAction.vala b/lib/DragDropAction.vala index 9e098ae8f..502af08c2 100644 --- a/lib/DragDropAction.vala +++ b/lib/DragDropAction.vala @@ -304,8 +304,6 @@ namespace Gala { ungrab_actor (); grab_actor (handle, event.get_device ()); - handle.reactive = false; - var source_list = sources.@get (drag_id); if (source_list != null) { var dest_list = destinations[drag_id]; diff --git a/src/Widgets/IconGroup.vala b/src/Widgets/IconGroup.vala index f6e17b10a..174004fb8 100644 --- a/src/Widgets/IconGroup.vala +++ b/src/Widgets/IconGroup.vala @@ -520,6 +520,9 @@ namespace Gala { toggle_close_button (false); + // disable reactivity so that workspace thumbs can get events + reactive = false; + return this; }