summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2023-02-11 01:05:46 +0100
committerDave Davenport <qball@gmpclient.org>2023-02-11 01:05:46 +0100
commit4d49e1d16769dcbed27949fc1bce2aa0c4e838d0 (patch)
tree95b3b55b8bd88ffb482c47edebc4437f66fc3113
parent3c8a0249c7b6ad8f8a9fe36bba6edc44ca16b6e8 (diff)
[Theme] Dump right modulo syntax.
-rw-r--r--source/theme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/theme.c b/source/theme.c
index e81ac35b..984e10a8 100644
--- a/source/theme.c
+++ b/source/theme.c
@@ -285,7 +285,7 @@ static void rofi_theme_print_distance_unit(RofiDistanceUnit *unit) {
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_MULTIPLY) {
fputs(" * ", stdout);
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_MODULO) {
- fputs(" % ", stdout);
+ fputs(" modulo ", stdout);
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_MIN) {
fputs(" min ", stdout);
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_MAX) {