xserver: Fix a typo

If `need_rotate` is TRUE, we should check for the right rotate.
This commit is contained in:
Robert Mader 2019-10-16 19:14:06 +02:00 committed by Adam Jackson
parent 55482c1caf
commit 427f8bc009

View File

@ -539,7 +539,7 @@ apply_output_change(struct xwl_output *xwl_output)
need_rotate = (xwl_output->xdg_output == NULL);
/* We need to rotate back the logical size for the mode */
if (need_rotate || xwl_output->rotation & (RR_Rotate_0 | RR_Rotate_180)) {
if (!need_rotate || xwl_output->rotation & (RR_Rotate_0 | RR_Rotate_180)) {
mode_width = xwl_output->width;
mode_height = xwl_output->height;
} else {