diff options
Diffstat (limited to 'src/mainwin.cc')
-rw-r--r-- | src/mainwin.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index 3fdee6b..dc738d7 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -39,6 +39,7 @@ #include "builtin.h" #include "progress.h" #include "dxfdim.h" +#include "AboutDialog.h" #ifdef ENABLE_OPENCSG #include "CSGTermEvaluator.h" #include "OpenCSGRenderer.h" @@ -1735,7 +1736,9 @@ void MainWindow::helpAbout() { qApp->setWindowIcon(QApplication::windowIcon()); - QMessageBox::information(this, "About OpenSCAD", QString(helptitle) + QString(copyrighttext)); + AboutDialog *dialog = new AboutDialog(this); + dialog->exec(); + //QMessageBox::information(this, "About OpenSCAD", QString(helptitle) + QString(copyrighttext)); } void |