Defaults: leave user prefs temp directory empty, so it gets right value per OS.

This commit is contained in:
Brecht Van Lommel 2018-11-01 14:45:58 +01:00
parent 79ec5f5cb8
commit 97bb56711e
1 changed files with 3 additions and 0 deletions

View File

@ -73,6 +73,9 @@ void BLO_update_defaults_userpref_blend(void)
bTheme *theme = U.themes.first;
memcpy(theme, &U_theme_default, sizeof(bTheme));
}
/* Leave temp directory empty, will then get appropriate value per OS. */
U.tempdir[0] = '\0';
}
/**