mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Make reindexer run on changing SleepyHead's data compression setting. (making it resave in either compressed or uncompressed state)
This commit is contained in:
parent
dfa36268c6
commit
9858525158
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user