wayland: Avoid overwriting xdg_output position with wl_output position

This commit is contained in:
Ethan Lee 2022-03-26 19:57:39 -04:00
parent 40417b188a
commit 5655be1558
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ display_handle_geometry(void *data,
} }
/* Apply the change from wl-output only if xdg-output is not supported */ /* Apply the change from wl-output only if xdg-output is not supported */
if (driverdata->has_logical_position) { if (!driverdata->has_logical_position) {
driverdata->x = x; driverdata->x = x;
driverdata->y = y; driverdata->y = y;
} }