Typo when reading line curving. The subversion is 1, so smaller than 1 should be converted

This commit is contained in:
2011-08-04 12:19:50 +00:00
parent cdea64e32c
commit 26fe903502

View File

@@ -1557,7 +1557,7 @@ void init_userdef_do_versions(void)
U.autokey_flag &= ~AUTOKEY_FLAG_ONLYKEYINGSET;
}
if (bmain->versionfile < 258 || (bmain->versionfile == 258 && bmain->subversionfile < 2)) {
if (bmain->versionfile < 258 || (bmain->versionfile == 258 && bmain->subversionfile < 1)) {
bTheme *btheme;
for(btheme= U.themes.first; btheme; btheme= btheme->next) {
btheme->tnode.noodle_curving = 5;