billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=c312797e4e7821da28800c2b4f4586faef9014ce
commit c312797e4e7821da28800c2b4f4586faef9014ce Author: Boris Faure <[email protected]> Date: Sun Sep 14 22:29:25 2014 +0200 font_set should be copied when forking the config we don't want to change the font whenever the config is forked! --- src/bin/config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/config.c b/src/bin/config.c index df9d19b..60b55bc 100644 --- a/src/bin/config.c +++ b/src/bin/config.c @@ -602,6 +602,7 @@ config_fork(Config *config) CPY(mouse_over_focus); CPY(temporary); SCPY(config_key); + CPY(font_set); EINA_LIST_FOREACH(config->keys, l, key) { --
