From 7aa91af3192ee260febfdbc2e2b4e6eb8b5ca445 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Sat, 25 Jul 2020 22:36:20 -0700 Subject: [PATCH] Make sure 'exportdir' from config file is utilized --- src/tuxpaint.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 69e9ddb0a..906aee3ef 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -22679,6 +22679,8 @@ static void setup_config(char *argv[]) datadir = tmpcfg.datadir ? tmpcfg.datadir : savedir; + exportdir = tmpcfg.exportdir ? tmpcfg.exportdir : exportdir; + if (tmpcfg.parsertmp_lang == PARSE_CLOBBER) tmpcfg.parsertmp_lang = NULL; if (tmpcfg.parsertmp_locale == PARSE_CLOBBER)