Save the user specified auto-save interval
| 1373 | |
| 1374 | // Save the user specified auto-save interval |
| 1375 | void Global::setAutoSaveInterval(int value) { |
| 1376 | global.settings->beginGroup("Appearance"); |
| 1377 | global.settings->setValue("autoSaveInterval", value); |
| 1378 | global.settings->endGroup(); |
| 1379 | global.autoSaveInterval = value*1000; |
| 1380 | } |
| 1381 | |
| 1382 | |
| 1383 |