Convert svg icon to png

This commit is contained in:
2022-04-09 14:39:16 +02:00
parent e0c1ba5147
commit 1e61e25fdc
5 changed files with 3 additions and 104 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ StretchPanel::StretchPanel(QWidget *parent) : QWidget(parent)
connect(invertButton, SIGNAL(toggled(bool)), this, SIGNAL(invert(bool)));
QToolButton *superPixelButton = new QToolButton(this);
superPixelButton->setIcon(QIcon(":/bayer.svg"));
superPixelButton->setIcon(QIcon(":/bayer.png"));
superPixelButton->setCheckable(true);
superPixelButton->setToolTip(tr("Superpixel CFA draw 2x2 pixel as one"));
connect(superPixelButton, SIGNAL(toggled(bool)), this, SIGNAL(superPixel(bool)));