~ubuntu-branches/ubuntu/trusty/lmms/trusty

« back to all changes in this revision

Viewing changes to src/gui/MainWindow.cpp

  • Committer: Package Import Robot
  • Author(s): Israel Dahl
  • Date: 2013-02-28 20:58:18 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130228205818-spbc545gwofxkkif
Tags: 0.4.14-0ubuntu1
* New upstream release.
  - Graphically enhanced AudioFileProcessor plugin
  - Fixed bug with magnetic knobs
  - Fixed various crashes
  - Completely revised VST support (improved VST effect support,
  timesync support and many more)
  - Added multitrack export
  - Added Hydrogen song import plugin
  - Fixed wrong chords
  - Improvements to automation framework
* debian/lmms.install debian/lmms-common.install
  - moved /usr/share/applications to lmms.install
* debian/control
  - updated Standards-Version to 3.9.4
* debian/copyright
  - updated to make current
* debian/rules
  - fixed Lintian errors during build

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
 
185
185
        m_updateTimer.start( 1000 / 20, this ); // 20 fps
186
186
 
187
 
        // connect auto save
188
 
        connect(&m_autoSaveTimer, SIGNAL(timeout()), this, SLOT(autoSave()));
189
 
        m_autoSaveTimer.start(1000 * 60); // 1 minute
 
187
        if( configManager::inst()->value( "ui", "enableautosave" ).toInt() )
 
188
        {
 
189
                // connect auto save
 
190
                connect(&m_autoSaveTimer, SIGNAL(timeout()), this, SLOT(autoSave()));
 
191
                m_autoSaveTimer.start(1000 * 60); // 1 minute
 
192
        }
190
193
}
191
194
 
192
195
 
255
258
                                        engine::getSong(),
256
259
                                        SLOT( exportProject() ),
257
260
                                        Qt::CTRL + Qt::Key_E );
 
261
        project_menu->addAction( embed::getIconPixmap( "project_export" ),
 
262
                                        tr( "E&xport tracks..." ),
 
263
                                        engine::getSong(),
 
264
                                        SLOT( exportProjectTracks() ),
 
265
                                        Qt::CTRL + Qt::SHIFT + Qt::Key_E );
 
266
 
258
267
        project_menu->addSeparator();
259
268
        project_menu->addAction( embed::getIconPixmap( "exit" ), tr( "&Quit" ),
260
269
                                        qApp, SLOT( closeAllWindows() ),