#2170 Summary Cross Plot : Add keyboard modifiers to source stepping

This commit is contained in:
Magne Sjaastad
2017-12-04 08:26:23 +01:00
parent 04a80864b1
commit c0109361ef
7 changed files with 269 additions and 18 deletions

View File

@@ -144,6 +144,17 @@ void PdmUiComboBoxEditor::configureAndUpdateUi(const QString& uiConfigName)
{
m_nextItemButton->setIcon(QApplication::style()->standardIcon(QStyle::SP_ArrowDown));
}
// Update button texts
if (!attributes.nextButtonText.isEmpty())
{
m_nextItemButton->setToolTip(attributes.nextButtonText);
}
if (!attributes.prevButtonText.isEmpty())
{
m_previousItemButton->setToolTip(attributes.prevButtonText);
}
}
else
{