term: use the monitors diagonal DPI value, instead of it's vertical PPI value

This commit is contained in:
Daniel Eklöf 2020-07-26 07:45:55 +02:00
parent b08db1ef97
commit 6e909d5cd3
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -587,14 +587,14 @@ get_font_dpi(const struct terminal *term)
double dpi = 0.0;
assert(term->window != NULL);
tll_foreach(term->window->on_outputs, it) {
if (it->item->ppi.scaled.y > dpi)
dpi = it->item->ppi.scaled.y * term->scale;
if (it->item->dpi > dpi)
dpi = it->item->dpi;
}
/* If we're not mapped, use DPI from first monitor. Hopefully this is where we'll get mapped later... */
if (dpi == 0.) {
tll_foreach(term->wl->monitors, it) {
dpi = it->item.ppi.scaled.y * term->scale;
dpi = it->item.dpi;
break;
}
}