We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f04c37 commit 9711a0fCopy full SHA for 9711a0f
src/WindowManager.vala
@@ -1011,6 +1011,11 @@ namespace Gala {
1011
if (NotificationStack.is_notification (window)) {
1012
notification_stack.show_notification (actor);
1013
}
1014
+
1015
+ // Workaround for X11 bug: https://github.com/elementary/dock/issues/479
1016
+ if (!Meta.Util.is_wayland_compositor () && window.window_type == DND) {
1017
+ InternalUtils.clutter_actor_reparent (actor, get_display ().get_compositor ().get_feedback_group ());
1018
+ }
1019
1020
1021
/*
0 commit comments