Skip to content

Commit b9d1009

Browse files
committed
FilesList: reduce debugs
1 parent 33f79fd commit b9d1009

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/widgets/FilesList.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,6 @@ void FilesList::updateList(const QStringList &chunk, bool clearList) {
308308
QElapsedTimer t1;
309309
t1.start();
310310
filtered.sort(Qt::CaseInsensitive);
311-
qDebug() << QString("Sorting %1 files took %2ms").arg(filtered.count()).arg(t1.elapsed());
312311
QTimer::singleShot(0, this, [this, clearList, filtered]() {
313312
QElapsedTimer t1;
314313
t1.start();
@@ -317,10 +316,6 @@ void FilesList::updateList(const QStringList &chunk, bool clearList) {
317316
}
318317

319318
filesModel->addFiles(filtered);
320-
qDebug()
321-
<< QString("Adding %1 files took %2ms").arg(filtered.count()).arg(t1.elapsed());
322-
// auto s = tr("Displaying %1/%2 files").arg(filtered.size()).arg(allFilesList.size());
323-
// loadingWidget->setToolTip(s);
324319
});
325320
});
326321
}

0 commit comments

Comments
 (0)