Skip to content
Snippets Groups Projects
Commit 69f51774 authored by Oliver Bock's avatar Oliver Bock
Browse files

Fixed hidden demo shortcut

* Command line option needs fixing, too (enable shortcut!)
* Demo mode itself still needs improvements
parent 363e1669
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,7 @@ PulsatingScience::PulsatingScience(QWidget *parent) : QMainWindow(parent) ...@@ -70,7 +70,7 @@ PulsatingScience::PulsatingScience(QWidget *parent) : QMainWindow(parent)
m_fullscreenESCShortcut->setEnabled(false); m_fullscreenESCShortcut->setEnabled(false);
// register "hidden" demo mode shortcut for IYA2009 exhibition // register "hidden" demo mode shortcut for IYA2009 exhibition
m_hiddenShortcut = new QShortcut(Qt::CTRL + Qt::SHIFT + Qt::ALT + Qt::Key_D, this); m_hiddenShortcut = new QShortcut(QKeySequence(Qt::SHIFT + Qt::ALT + Qt::Key_D), this);
// establish object communications // establish object communications
connect(ui.pushRun, SIGNAL(clicked()), connect(ui.pushRun, SIGNAL(clicked()),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment