1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00

Add mesg about fullscreen and monitor setup

This commit is contained in:
QC 2015-10-18 13:45:15 +02:00
parent 93b6b83fb9
commit 73fd87f820

View file

@ -573,6 +573,12 @@ void config_sanity_check ( Display *display )
found_error = 1;
}
}
if ( config.fullscreen && config.monitor != -1 ) {
g_string_append_printf ( msg, "\t<b>config.monitor</b>=%d is invalid. Value should be unset (-1) when fullscreen mode is enabled.\n",
config.monitor);
config.monitor = -1;
found_error = 1;
}
// Check size
{