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
1 changed files with 1 additions and 1 deletions

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++ ) {