Fix zone setup for wayland compositor on X

Both the X and WL code try to set up the output pointer for the
zone.  Make the WL output take precedence, since it's actually
used for events.
devs/illogict/signals_priority
Derek Foreman 7 years ago
parent cefcc5248f
commit c22c140c2f
  1. 2
      src/bin/e_comp_x_randr.c

@ -838,7 +838,7 @@ e_comp_x_randr_create(void)
}
}
zone = e_zone_for_id_get(s->id);
if (zone) zone->output = s;
if (zone && !zone->output) zone->output = s;
r->screens = eina_list_append(r->screens, s);
}

Loading…
Cancel
Save