Skip to content

Commit eb6dd5f

Browse files
authored
Merge pull request #108 from nonlin-lin-chaos-order-etc-etal/upstreammaster
Fix saving configs
2 parents 758301b + 4162308 commit eb6dd5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mainwindow.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class MainWindowItem : public QObject {
160160
out << boost::any_cast<int>(optionValue);
161161
}else if(isType<unsigned long>(optionValue)) {
162162
out << boost::any_cast<unsigned long>(optionValue);
163-
}if(isType<unsigned int>(optionValue)) {
163+
}else if(isType<unsigned int>(optionValue)) {
164164
out << boost::any_cast<unsigned int>(optionValue);
165165
}else if(isType<unsigned short>(optionValue)) {
166166
out << boost::any_cast<unsigned short>(optionValue);

0 commit comments

Comments
 (0)