1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

Fix conversion of border color to new theme format.

This commit is contained in:
Dave Davenport 2017-09-24 15:32:53 +02:00
parent 0596f7c1a1
commit 8a0563634f

View file

@ -783,7 +783,7 @@ void rofi_theme_convert_old ( void )
char **retv = g_strsplit ( config.color_window, ",", -1 );
const char * const conf[] = {
"* { background: %s; }",
"* { bordercolor: %s; }",
"* { border-color: %s; }",
"* { separatorcolor: %s; }"
};
for ( int i = 0; retv && i < 3 && retv[i]; i++ ) {