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 78199ce commit e3188b2Copy full SHA for e3188b2
src/gui/gtk.c
@@ -1011,7 +1011,12 @@ static gboolean _window_configure(GtkWidget *da,
1011
{
1012
static int oldx = 0;
1013
static int oldy = 0;
1014
- if(oldx != event->configure.x || oldy != event->configure.y)
+
1015
+ // FIXME: On Wayland we always configure as the even->configure x, y
1016
+ // are always 0.
1017
+ if(oldx != event->configure.x
1018
+ || oldy != event->configure.y
1019
+ || dt_gui_get_session_type() == DT_GUI_SESSION_WAYLAND)
1020
1021
// maybe we are on another screen now with > 50% of the area
1022
dt_colorspaces_set_display_profile(DT_COLORSPACE_DISPLAY);
0 commit comments