mirror of
https://github.com/lbonn/rofi
synced 2024-11-24 04:43:03 +00:00
Fix printing of link element.
This commit is contained in:
parent
4cc21b93a5
commit
e6a6d5f894
1 changed files with 2 additions and 1 deletions
|
@ -135,7 +135,8 @@ static void rofi_theme_print_property_index ( int depth, Property *p )
|
||||||
printf(";");
|
printf(";");
|
||||||
break;
|
break;
|
||||||
case P_LINK:
|
case P_LINK:
|
||||||
printf("@%s;", p->value.link.name);
|
printf("%s;", p->value.link.name);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
putchar ( '\n' );
|
putchar ( '\n' );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue