diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2025-10-23 22:50:55 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2025-10-23 22:50:55 -0400 |
| commit | 34e31d33defb922ad464857487469c5659bbefcc (patch) | |
| tree | eef5920e3eed700c6af60378b6e2e401f3df14d3 /config.h | |
| parent | a58e1bd66da70898144029ea3aef5d0692c37414 (diff) | |
fix fancy scroll freaking out if item is too long
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2,11 +2,13 @@ #define CONFIG_H_ #include <stdint.h> +#include <stdbool.h> typedef struct { float r,g,b,a; } color_t; +static const bool fancy_scroll = false; static const uint32_t min_width = 500; static const uint32_t font_size = 16; static const color_t text_color = {0.85, 0.85, 0.85, 1.0}; |
