Fix "disable autoquit" option
Wasn't getting saved/loaded properly, fixed that TODO: disable autoquit causes some effects to keep running even when the song is stopped... this should be addressed at some point
This commit is contained in:
@@ -163,16 +163,6 @@ public:
|
||||
return( m_recentlyOpenedProjects );
|
||||
}
|
||||
|
||||
const bool isAutoquitDisabled() const
|
||||
{
|
||||
return m_isAutoquitDisabled;
|
||||
}
|
||||
|
||||
void setAutoquitDisabled( bool value )
|
||||
{
|
||||
m_isAutoquitDisabled = value;
|
||||
}
|
||||
|
||||
void addRecentlyOpenedProject( const QString & _file );
|
||||
|
||||
const QString & value( const QString & _class,
|
||||
@@ -219,8 +209,6 @@ private:
|
||||
QString m_backgroundArtwork;
|
||||
QStringList m_recentlyOpenedProjects;
|
||||
|
||||
bool m_isAutoquitDisabled;
|
||||
|
||||
typedef QVector<QPair<QString, QString> > stringPairVector;
|
||||
typedef QMap<QString, stringPairVector> settingsMap;
|
||||
settingsMap m_settings;
|
||||
|
||||
@@ -161,6 +161,7 @@ private:
|
||||
bool m_animateAFP;
|
||||
bool m_printNoteLabels;
|
||||
bool m_displayWaveform;
|
||||
bool m_disableAutoQuit;
|
||||
|
||||
typedef QMap<QString, AudioDevice::setupWidget *> AswMap;
|
||||
typedef QMap<QString, MidiClient::setupWidget *> MswMap;
|
||||
|
||||
Reference in New Issue
Block a user