diff options
author | 2023-01-26 20:30:06 +0530 | |
---|---|---|
committer | 2023-01-26 20:30:06 +0530 | |
commit | 103a36868bf311171a6263ed25bda977b58ec5d9 (patch) | |
tree | 886e13a469bad3e89deb64c2d766e4bcc9dcfbb0 | |
parent | f31197a4ef9c49a5658d283011455832d0bf9038 (diff) | |
download | whatsie-103a36868bf311171a6263ed25bda977b58ec5d9.tar.gz whatsie-103a36868bf311171a6263ed25bda977b58ec5d9.zip |
chore: remove debugging from MoreApps widget
-rw-r--r-- | src/widgets/MoreApps/moreapps.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/MoreApps/moreapps.cpp b/src/widgets/MoreApps/moreapps.cpp index b28476a..b8e8c17 100644 --- a/src/widgets/MoreApps/moreapps.cpp +++ b/src/widgets/MoreApps/moreapps.cpp @@ -217,7 +217,7 @@ void MoreApps::setRemoteIcon(const QUrl &iconUrl, QLabel *lb) { auto replyBytes = reply->readAll(); QPixmap pixmap; pixmap.loadFromData(replyBytes); - qDebug() << "after load" << lb->size(); + //qDebug() << "after load" << lb->size(); lb->setPixmap(pixmap.scaled(lb->size(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); } @@ -254,7 +254,7 @@ void MoreApps::showApps() { setRemoteIcon(fallbackIconUrl, nullptr); foreach (auto a, mAppList) { auto iconUrl = a.getIconUrl(); - qDebug() << "pre-caching icon for" << a.getName(); + //qDebug() << "pre-caching icon for" << a.getName(); setRemoteIcon(iconUrl, nullptr); } } |