DnD: Don't disable reactivity (#1610)

This commit is contained in:
Leo 2023-04-05 03:54:09 +09:00 committed by GitHub
parent c0a77ade59
commit 530a66ea2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -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>

View File

@ -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];

View File

@ -520,6 +520,9 @@ namespace Gala {
toggle_close_button (false);
// disable reactivity so that workspace thumbs can get events
reactive = false;
return this;
}