mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-21 01:40:16 -05:00
feature: add resize-by-cells option to constrain window sizes...
...to multiples of the cell size, and preserve grid size when changing fonts or display scales in floating windows.
This commit is contained in:
parent
e0f3703ae6
commit
21a8d832ce
8 changed files with 120 additions and 55 deletions
4
config.c
4
config.c
|
|
@ -921,6 +921,9 @@ parse_section_main(struct context *ctx)
|
|||
else if (streq(key, "resize-delay-ms"))
|
||||
return value_to_uint16(ctx, 10, &conf->resize_delay_ms);
|
||||
|
||||
else if (streq(key, "resize-by-cells"))
|
||||
return value_to_bool(ctx, &conf->resize_by_cells);
|
||||
|
||||
else if (streq(key, "bold-text-in-bright")) {
|
||||
if (streq(value, "palette-based")) {
|
||||
conf->bold_in_bright.enabled = true;
|
||||
|
|
@ -2990,6 +2993,7 @@ config_load(struct config *conf, const char *conf_path,
|
|||
},
|
||||
.pad_x = 0,
|
||||
.pad_y = 0,
|
||||
.resize_by_cells = true,
|
||||
.resize_delay_ms = 100,
|
||||
.bold_in_bright = {
|
||||
.enabled = false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue