Disable auto-reload of files

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad 2025-04-19 09:34:12 +01:00
parent 0aa3341d58
commit 111cdc240e
No known key found for this signature in database
GPG Key ID: 5E39D70B4C93C38E

View File

@ -142,8 +142,11 @@ void OtherLogsPage::populateSelectLogBox()
if (!prevCurrentFile.isEmpty()) {
const int index = ui->selectLogBox->findText(prevCurrentFile);
if (index != -1) {
ui->selectLogBox->blockSignals(true);
ui->selectLogBox->setCurrentIndex(index);
ui->selectLogBox->blockSignals(false);
setControlsEnabled(true);
return;
} else {
setControlsEnabled(false);
}