mirror of
https://github.com/lbonn/rofi
synced 2024-11-30 15:49:17 +00:00
Fix conversion of border color to new theme format.
This commit is contained in:
parent
0596f7c1a1
commit
8a0563634f
1 changed files with 1 additions and 1 deletions
|
@ -783,7 +783,7 @@ void rofi_theme_convert_old ( void )
|
||||||
char **retv = g_strsplit ( config.color_window, ",", -1 );
|
char **retv = g_strsplit ( config.color_window, ",", -1 );
|
||||||
const char * const conf[] = {
|
const char * const conf[] = {
|
||||||
"* { background: %s; }",
|
"* { background: %s; }",
|
||||||
"* { bordercolor: %s; }",
|
"* { border-color: %s; }",
|
||||||
"* { separatorcolor: %s; }"
|
"* { separatorcolor: %s; }"
|
||||||
};
|
};
|
||||||
for ( int i = 0; retv && i < 3 && retv[i]; i++ ) {
|
for ( int i = 0; retv && i < 3 && retv[i]; i++ ) {
|
||||||
|
|
Loading…
Reference in a new issue