xsettings - if we set font from e use same size not 0.75 times size

xft.dpi + xsettings dpi should be dealing with this these days
This commit is contained in:
Carsten Haitzler 2021-01-08 22:31:11 +00:00
parent d5658d2190
commit b08ad06ede
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ _e_xsettings_font_set(void)
if (size < 5) size = 5; // don't allow too small
else if (size > 100) size = 100; // don't allow silly sizes
_dbl_to_str(size_buf, sizeof(size_buf), (double)size * 0.75, 0);
_dbl_to_str(size_buf, sizeof(size_buf), (double)size, 0);
buf = eina_strbuf_new();
eina_strbuf_append(buf, efp->name);