mirror of
https://github.com/elementary/gala.git
synced 2024-11-25 03:06:14 +01:00
DnD: Don't disable reactivity (#1610)
This commit is contained in:
parent
c0a77ade59
commit
530a66ea2d
@ -34,6 +34,7 @@
|
||||
<issue url="https://github.com/elementary/gala/issues/1566">Hotkeys are not working with non-EN keyboard layout</issue>
|
||||
<issue url="https://github.com/elementary/gala/issues/1578">Closing a window in multitasking view closes multitasking view</issue>
|
||||
<issue url="https://github.com/elementary/gala/issues/1584">When 2 windows are tiled and then resized, the inactive one gets glitched, leaving its full-sized picture as an artifact when minimized</issue>
|
||||
<issue url="https://github.com/elementary/gala/issues/1607">Picture-in-Picture drag seems to snap to a grid</issue>
|
||||
</issues>
|
||||
</release>
|
||||
|
||||
|
@ -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];
|
||||
|
@ -520,6 +520,9 @@ namespace Gala {
|
||||
|
||||
toggle_close_button (false);
|
||||
|
||||
// disable reactivity so that workspace thumbs can get events
|
||||
reactive = false;
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user