mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-18 05:34:02 -04:00
term: font_size_{increase,descrease}: adjust size by 0.5pt
This commit is contained in:
parent
8716430450
commit
b0f98a9d0c
1 changed files with 2 additions and 2 deletions
|
|
@ -1153,13 +1153,13 @@ term_font_size_adjust(struct terminal *term, double amount)
|
||||||
void
|
void
|
||||||
term_font_size_increase(struct terminal *term)
|
term_font_size_increase(struct terminal *term)
|
||||||
{
|
{
|
||||||
term_font_size_adjust(term, 1.);
|
term_font_size_adjust(term, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
term_font_size_decrease(struct terminal *term)
|
term_font_size_decrease(struct terminal *term)
|
||||||
{
|
{
|
||||||
term_font_size_adjust(term, -1.);
|
term_font_size_adjust(term, -0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue