(style) swap conditional blocks

This commit is contained in:
Benedikt Heine 2019-02-28 12:45:17 +01:00 committed by Nikos Tsipinakis
parent 4f510e1703
commit 37e580e857

View File

@ -90,11 +90,11 @@ double screen_dpi_get(struct screen_info *scr)
void init_screens(void) void init_screens(void)
{ {
if (!settings.force_xinerama) { if (settings.force_xinerama) {
xinerama_update();
} else {
randr_init(); randr_init();
randr_update(); randr_update();
} else {
xinerama_update();
} }
} }