mirror of
https://github.com/vicr123/the-libs.git
synced 2025-01-22 18:32:10 -05:00
Add fallback icon to tTitleLabel
This commit is contained in:
parent
da4f0995ff
commit
ae601327ba
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ tTitleLabel::tTitleLabel(QWidget* parent) : QLabel(parent) {
|
|||
d = new tTitleLabelPrivate();
|
||||
|
||||
d->backButton = new QToolButton(this);
|
||||
d->backButton->setIcon(QIcon::fromTheme("go-previous"));
|
||||
d->backButton->setIcon(QIcon::fromTheme("go-previous", QIcon(":/the-libs/icons/go-previous.svg")));
|
||||
d->backButton->setAutoRaise(true);
|
||||
d->backButton->move(0, 0);
|
||||
d->backButton->setFixedHeight(this->height() - 1);
|
||||
|
|
Loading…
Reference in a new issue