Make reindexer run on changing SleepyHead's data compression setting. (making it resave in either compressed or uncompressed state)

This commit is contained in:
Mark Watkins 2012-01-10 16:28:03 +10:00
parent dfa36268c6
commit 9858525158

View File

@ -305,8 +305,11 @@ bool PreferencesDialog::Save()
needs_restart=true;
else recalc_events=true;
}
if (profile->session->compressSessionData()!=ui->compressSessionData->isChecked()) recalc_events=true;
if (recalc_events) {
if (QMessageBox::question(this,tr("Data Reindex Required"),tr("A lengthy data reindexing proceedure is required to apply these changes.\n\nAre you sure you want to make these changes?"),QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) {
if (QMessageBox::question(this,tr("Data Reindex Required"),tr("A data reindexing proceedure is required to apply these changes.\n\nAre you sure you want to make these changes?"),QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) {
return false;
}
} else if (needs_restart) {