Skip to content

Commit

Permalink
wayland: Fix drag and drop icons (#1889)
Browse files Browse the repository at this point in the history
  • Loading branch information
leolost2605 authored Apr 3, 2024
1 parent 87c6a2f commit e20989c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/WindowManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ namespace Gala {
* +-- pointer locator
* +-- dwell click timer
* +-- screen shield
* +-- feedback group (e.g. DND icons)
*/

system_background = new SystemBackground (display);
Expand All @@ -233,6 +234,14 @@ namespace Gala {
stage.remove_child (top_window_group);
ui_group.add_child (top_window_group);

#if HAS_MUTTER44
var feedback_group = display.get_compositor ().get_feedback_group ();
#else
var feedback_group = display.get_feedback_group ();
#endif
stage.remove_child (feedback_group);
ui_group.add_child (feedback_group);

FilterManager.init (this);

/*keybindings*/
Expand Down

0 comments on commit e20989c

Please sign in to comment.