Skip to content

Commit

Permalink
Merge pull request #108 from nonlin-lin-chaos-order-etc-etal/upstream…
Browse files Browse the repository at this point in the history
…master

Fix saving configs
  • Loading branch information
orignal authored Dec 5, 2024
2 parents 758301b + 4162308 commit eb6dd5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class MainWindowItem : public QObject {
out << boost::any_cast<int>(optionValue);
}else if(isType<unsigned long>(optionValue)) {
out << boost::any_cast<unsigned long>(optionValue);
}if(isType<unsigned int>(optionValue)) {
}else if(isType<unsigned int>(optionValue)) {
out << boost::any_cast<unsigned int>(optionValue);
}else if(isType<unsigned short>(optionValue)) {
out << boost::any_cast<unsigned short>(optionValue);
Expand Down

0 comments on commit eb6dd5f

Please sign in to comment.