Skip to content

Commit c957ffb

Browse files
authored
Merge pull request #321 from githubdoe/wft_null
Allows compatibility with older wavefront (.wft) files
2 parents 4b0a26b + 2b56e4a commit c957ffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

surfacemanager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ wavefront * SurfaceManager::readWaveFront(const QString &fileName){
11991199
md->m_outlineShape = ELLIPSE;
12001200
iss >> dummy >> md->m_verticalAxis;
12011201
}
1202-
if (l.startsWith("Do Not use null")){
1202+
if (l.startsWith("Do Not use null") || l.startsWith("nulled") ){
12031203
wf->useSANull = false;
12041204
}
12051205
}

0 commit comments

Comments
 (0)