aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorConfuSomu2023-01-21 20:21:02 -0500
committerConfuSomu2023-01-21 20:21:17 -0500
commit1af93e0231817ed8275300a3458ff7a37453188f (patch)
treec7271b883c325eb0f33a6ad01ed5d2c1b687bb29 /src
parent48ce8e1dea23d515d196420d3aa307875b482328 (diff)
downloadActorViewer-1af93e0231817ed8275300a3458ff7a37453188f.tar
ActorViewer-1af93e0231817ed8275300a3458ff7a37453188f.tar.gz
ActorViewer-1af93e0231817ed8275300a3458ff7a37453188f.zip
Remove debug statement
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 6ea82fd..2e4b19b 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -8,7 +8,6 @@
#include <QRandomGenerator>
#include <QClipboard>
#include <QMimeData>
-#include <QDebug>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
@@ -111,8 +110,6 @@ void MainWindow::on_buttonSearch_clicked() {
selected_match = 0;
} else if (++selected_match >= matches.size()) selected_match = 0;
- qDebug() << matches.size() << selected_match;
-
if (not matches.isEmpty()) {
ui->listWidget->scrollToItem(matches[selected_match], QAbstractItemView::EnsureVisible);
ui->listWidget->setCurrentItem(matches[selected_match]);