Remove accidental return

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad 2025-04-18 23:45:46 +01:00
parent 01efd5b5d8
commit 96a4b78e2e
No known key found for this signature in database
GPG Key ID: 5E39D70B4C93C38E

View File

@ -43,11 +43,11 @@
#include <FileSystem.h>
#include <GZip.h>
#include <qdir.h>
#include <qdiriterator.h>
#include <qfilesystemwatcher.h>
#include <qurl.h>
#include <QDir>
#include <QFileSystemWatcher>
#include <QShortcut>
#include <QUrl>
OtherLogsPage::OtherLogsPage(InstancePtr instance, QWidget* parent)
: QWidget(parent)
@ -144,7 +144,6 @@ void OtherLogsPage::populateSelectLogBox()
if (index != -1) {
ui->selectLogBox->setCurrentIndex(index);
setControlsEnabled(true);
return;
} else {
setControlsEnabled(false);
}