Changed the application icon and added credits to icons to the "about" dialog.

This commit is contained in:
2026-02-27 17:38:13 +01:00
parent a6847f2661
commit 507754985c
7 changed files with 9 additions and 5 deletions

View File

@ -262,7 +262,7 @@ void ItemDetailMapper::onCurrentIndexChanged(const QModelIndex& current,
void ItemDetailMapper::updateQRCode(const QString text) {
QImage unscaledImage;
if (text.isEmpty()) {
unscaledImage = QImage("://no-picture-taking.png");
unscaledImage = QImage("://no-picture.png");
} else {
unscaledImage = m_generator.generateQr(text);
}