From 0d5465f507c49d2b9d8114d9c2598bd4143152ee Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Tue, 1 Feb 2022 19:16:51 +0000 Subject: [PATCH] scaling - handle scale settings changes... on the fly... perhaps we just dont set the tmp flag instead of dont apply font changes where size is the same but scale will have changed... fix scale settings changes on the fly... @fix --- src/bin/termio.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/termio.c b/src/bin/termio.c index 8b59c8c8..94828fd5 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -383,9 +383,8 @@ _font_size_set(Evas_Object *obj, int size) font_size_scale = ELM_SCALE_SIZE(size); if (sd->font_size_scale == font_size_scale) return; sd->font_size_scale = font_size_scale; - if ((config) && (size != config->font.size)) + if (config) { - config->temporary = EINA_TRUE; config->font.size = size; sd->noreqsize = 1; termio_config_update(obj);