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:
parent
93b6b83fb9
commit
73fd87f820
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue