Fix printing of link element.

This commit is contained in:
Dave Davenport 2017-01-05 18:23:27 +01:00
parent 4cc21b93a5
commit e6a6d5f894
1 changed files with 2 additions and 1 deletions

View File

@ -135,7 +135,8 @@ static void rofi_theme_print_property_index ( int depth, Property *p )
printf(";");
break;
case P_LINK:
printf("@%s;", p->value.link.name);
printf("%s;", p->value.link.name);
break;
}
putchar ( '\n' );
}