term: font_size_{increase,descrease}: adjust size by 0.5pt

This commit is contained in:
Daniel Eklöf 2020-02-10 22:22:42 +01:00
parent 8716430450
commit b0f98a9d0c
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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