diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-04 16:49:45 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-04 16:49:45 (GMT) |
commit | 4cc87c32f42dec0ef56dc1e35bd20b13dae3674b (patch) | |
tree | f002a1caec151bba773a5a8eb999e22f8804f3a0 /src/mainwin.cc | |
parent | fddad68a73fa129f4871027c81d8e7702591d968 (diff) |
Add info to 'about' window with acknowledgements, etc.
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 |