From 85ee7b9378e205a987ef9fa7eaae3c4126b7eea9 Mon Sep 17 00:00:00 2001 From: fekt Date: Sun, 19 Feb 2023 21:50:40 -0500 Subject: [PATCH] Fix QR logo path --- src/qrcodelabel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qrcodelabel.cpp b/src/qrcodelabel.cpp index 3f8a06a..4046c2e 100644 --- a/src/qrcodelabel.cpp +++ b/src/qrcodelabel.cpp @@ -51,7 +51,7 @@ QPixmap QRCodeLabel::scaledPixmap() const { } // TODO: Maybe add logo if it doesn't break QR code - requires setting Ecc to HIGH - painter.drawPixmap((w/2)-50, (h/2)-50, 100, 100, QPixmap(":/img/logobig.gif")); + painter.drawPixmap((w/2)-50, (h/2)-50, 100, 100, QPixmap(":/img/res/logobig.gif")); painter.end(); return pm;