summaryrefslogtreecommitdiffstats
path: root/source/theme.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/theme.c')
-rw-r--r--source/theme.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/theme.c b/source/theme.c
index 0319b18d..774298c0 100644
--- a/source/theme.c
+++ b/source/theme.c
@@ -386,6 +386,15 @@ static void int_rofi_theme_print_property(Property *p) {
if (p->value.highlight.style & ROFI_HL_ITALIC) {
printf("italic ");
}
+ if (p->value.highlight.style & ROFI_HL_UPPERCASE) {
+ printf("uppercase ");
+ }
+ if (p->value.highlight.style & ROFI_HL_LOWERCASE) {
+ printf("lowercase ");
+ }
+ if (p->value.highlight.style & ROFI_HL_CAPITALIZE) {
+ printf("capitalize ");
+ }
if (p->value.highlight.style & ROFI_HL_COLOR) {
rofi_theme_print_color(p->value.highlight.color);
}