1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-18 05:38:47 -04:00

Massive UI revamping (v7): feature window basic feature settings dialog: implemented reset to default title. Some cosmetic changes

This commit is contained in:
f4exb
2022-04-18 12:08:33 +02:00
parent e8a2c8b947
commit 560d61abcb
27 changed files with 87 additions and 32 deletions
+6 -1
View File
@@ -67,7 +67,7 @@ FeatureGUI::FeatureGUI(QWidget *parent) :
m_moveButton->setFixedSize(20, 20);
QIcon moveIcon(":/exit.png");
m_moveButton->setIcon(moveIcon);
m_moveButton->setToolTip("Move to workspace");
m_moveButton->setToolTip("Move to another workspace");
m_shrinkButton = new QPushButton();
m_shrinkButton->setFixedSize(20, 20);
@@ -260,3 +260,8 @@ void FeatureGUI::setIndex(int index)
m_indexLabel->setText(tr("F:%1").arg(m_featureIndex));
}
void FeatureGUI::setDisplayedame(const QString& name)
{
m_displayedName = name;
m_indexLabel->setToolTip(tr("%1").arg(m_displayedName));
}