diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-04-30 13:19:33 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-04-30 13:19:33 +0200 |
commit | fe5d5c6709a77ac5d554e26dda76a67df68618ae (patch) | |
tree | b9cfb0549653fd83d290b01af04593edfc39d2bb | |
parent | e1e1de7b3b8399cba90ddca9613f837b2dbef7b9 (diff) |
fix incorrect comment, math is hard
-rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -673,7 +673,7 @@ setup(void) | |||
673 | mw = wa.width; | 673 | mw = wa.width; |
674 | } | 674 | } |
675 | promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0; | 675 | promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0; |
676 | inputw = mw / 3; /* input width: ~30% of monitor width */ | 676 | inputw = mw / 3; /* input width: ~33% of monitor width */ |
677 | match(); | 677 | match(); |
678 | 678 | ||
679 | /* create menu window */ | 679 | /* create menu window */ |