Skip to content

Commit

Permalink
Merge pull request fstl-app#16 from DeveloperPaul123/master
Browse files Browse the repository at this point in the history
Small Fix for Windows
  • Loading branch information
mkeeter authored Apr 29, 2017
2 parents 30634f1 + a016e0a commit d491e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ void Window::on_open()
{
QString filename = QFileDialog::getOpenFileName(
this, "Load .stl file", QString(), "*.stl");
if (not filename.isNull())
if (!filename.isNull())
{
load_stl(filename);
}
Expand Down

0 comments on commit d491e78

Please sign in to comment.