summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2022-04-30 13:19:33 +0200
committerrafa_99 <raroma09@gmail.com>2022-04-30 13:34:09 +0100
commit644096a6ec9a7d1d798a6b186b38fbc3e86ac036 (patch)
tree08e2198bfc46c2c7fc0d8772a0a99445c69e9bbf
parent42135bf757c82cd039adb339683c905267beaacc (diff)
fix incorrect comment, math is hard
-rw-r--r--dmenu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu.c b/dmenu.c
index a05ba4d..289213e 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -684,7 +684,7 @@ setup(void)
mw = wa.width;
}
promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0;
- inputw = mw / 3; /* input width: ~30% of monitor width */
+ inputw = mw / 3; /* input width: ~33% of monitor width */
match();
/* create menu window */