Fix missed strings for UI consistency
Fix ellipsis rendering
This commit is contained in:
committed by
Chris Hennes
parent
f371622d6f
commit
70f4221993
@@ -2649,13 +2649,13 @@ void ViewProviderLink::_setupContextMenu(
|
||||
const auto actions = menu->actions();
|
||||
for(auto action : actions) {
|
||||
if(action->data().toInt() == ViewProvider::Color) {
|
||||
action->setText(QObject::tr("Override Colors…"));
|
||||
action->setText(QObject::tr("Override Colors"));
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(!found) {
|
||||
QAction* act = menu->addAction(QObject::tr("Override Colors…"), receiver, member);
|
||||
QAction* act = menu->addAction(QObject::tr("Override Colors"), receiver, member);
|
||||
act->setData(QVariant((int)ViewProvider::Color));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user