mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05: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
|
||||
term_font_size_increase(struct terminal *term)
|
||||
{
|
||||
term_font_size_adjust(term, 1.);
|
||||
term_font_size_adjust(term, 0.5);
|
||||
}
|
||||
|
||||
void
|
||||
term_font_size_decrease(struct terminal *term)
|
||||
{
|
||||
term_font_size_adjust(term, -1.);
|
||||
term_font_size_adjust(term, -0.5);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue