https://bugzilla.xfce.org/show_bug.cgi?id=14461

--- Comment #11 from alexxcons <[email protected]> ---
Ah, much better .. think now it is more or less clear what's the Problem:

plugins/thunar-wallpaper/twp-provider.c:183:
....  
xfce_selection_atom = XInternAtom (gdk_x11_get_default_xdisplay(),
selection_name, False);
...


gdk_x11_get_default_xdisplay() does not work for wayland.

Wonder if it can be replaced by "gdk_display_get_default (void)" .. probably
not.  I dont run wayland, so I cannot test that.

A solution could be to check if it is set:
if (!GDK_IS_X11_DISPLAY(display)) return;

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Xfce-bugs mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce-bugs

Reply via email to