diff options
author | ZachIR <zachir@librem.one> | 2022-05-18 19:10:43 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2022-05-18 19:10:43 -0500 |
commit | 0000a18cfdb07a692adf901e41e727f68b56b215 (patch) | |
tree | 99bd0cb4d6c4efe0969a1f927ac3b0880b7f89e4 /config.h | |
parent | ea51498bfdc1eae6129905f5c4ce44c36b233fe8 (diff) |
config.h: set default height to 24
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ static const char *colors[SchemeLast][10] = { }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0; -static unsigned int lineheight = 0; /* -h option; minimum height of a menu line */ +static unsigned int lineheight = 24; /* -h option; minimum height of a menu line */ static unsigned int min_lineheight = 8; static int sely = 0; static int commented = 0; |