Actually implement modify_font

This commit is contained in:
Kovid Goyal
2022-07-15 12:27:42 +05:30
parent 1aa50b73a1
commit 03df0c3cca
3 changed files with 22 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ typedef struct {
size_t len;
} UrlPrefix;
typedef enum AdjustmentUnit { POINT, PERCENT, PIXEL } AdjustmentUnit;
typedef enum AdjustmentUnit { POINT = 0, PERCENT = 1, PIXEL = 2 } AdjustmentUnit;
typedef struct {
monotonic_t visual_bell_duration, cursor_blink_interval, cursor_stop_blinking_after, mouse_hide_wait, click_interval;