raster pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=5c74541206592f54e5b769f926d255069db72e8e
commit 5c74541206592f54e5b769f926d255069db72e8e Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Tue Jun 11 11:57:24 2019 +0100 config - font size - go back to 10 as default so a whole back terminology moved from the shipepd nexus bitmap font to system monospace fonts and 12 pt. it has always looked wrong as efl's default theme is 10 and relies on a system-wide scale factor to do this. 12 has looked totally out of place for a long time and it's time that this not be hacked around in terminology but be solved at the system level - maybe efl. if you use e then you will have selected the scaling factor already and it will affect efl apps and all work. outside of e is "not solved". to date it's been "other desktosp have to support efl - up to them". perhaps looking at some level of "well user has no config so let's guess what scale factor should maybe be based on dpy and other toolkit configs we can find etc." in EFL... not terminology. --- src/bin/config.c | 2 +- src/bin/tyfuzz.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/config.c b/src/bin/config.c index 70a8009..7562d93 100644 --- a/src/bin/config.c +++ b/src/bin/config.c @@ -483,7 +483,7 @@ config_default_font_set(Config *config, Evas *evas) if (config->font_set) { config->font.bitmap = EINA_FALSE; - config->font.size = 12; + config->font.size = 10; config->font.bolditalic = EINA_TRUE; eina_stringshare_del(fname); } diff --git a/src/bin/tyfuzz.c b/src/bin/tyfuzz.c index e1c1d12..1a3499d 100644 --- a/src/bin/tyfuzz.c +++ b/src/bin/tyfuzz.c @@ -40,7 +40,7 @@ static Termpty _ty; static Termio _sd = { .font = { .name = "", - .size = 12, + .size = 10, .chw = TY_CH_W, .chh = TY_CH_H, }, --
