Fix high-res unauto-hide icon

We had it but we were still using the old one in C++
This commit is contained in:
Sergio Martins
2020-10-03 12:04:39 +01:00
parent fcf56664cc
commit ef23553b66

View File

@@ -195,7 +195,7 @@ void TitleBarWidget::updateAutoHideButton()
m_autoHideButton->setIcon(iconForButton(QStringLiteral("auto-hide")));
m_autoHideButton->setToolTip(tr("Auto-hide"));
} else if (f->isOverlayed()) {
m_autoHideButton->setIcon(QIcon(QStringLiteral(":/img/unauto-hide.png")));
m_autoHideButton->setIcon(iconForButton(QStringLiteral("unauto-hide")));
m_autoHideButton->setToolTip(tr("Disable auto-hide"));
}