Fix printing of link element.

This commit is contained in:
Dave Davenport 2017-01-05 18:23:27 +01:00
parent 4cc21b93a5
commit e6a6d5f894

View file

@ -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' );
} }