From ec0897da1b56f34f5bf838b7e597936f23321024 Mon Sep 17 00:00:00 2001 From: "Matthew J. Milner" Date: Sun, 10 Nov 2024 13:15:50 +0100 Subject: [PATCH] Add ellipsis to color options that open dialogs Signed-off-by: Matthew J. Milner --- avogadro/qtplugins/applycolors/applycolors.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/avogadro/qtplugins/applycolors/applycolors.cpp b/avogadro/qtplugins/applycolors/applycolors.cpp index 12bdf4c752..1fcc38aa07 100644 --- a/avogadro/qtplugins/applycolors/applycolors.cpp +++ b/avogadro/qtplugins/applycolors/applycolors.cpp @@ -45,12 +45,12 @@ ApplyColors::ApplyColors(QObject* parent_) connect(action, SIGNAL(triggered()), SLOT(openColorDialog())); m_actions.append(action); - action = new QAction(tr("By Atomic Index"), this); + action = new QAction(tr("By Atomic Index…"), this); action->setData(atomColors); connect(action, SIGNAL(triggered()), SLOT(applyIndexColors())); m_actions.append(action); - action = new QAction(tr("By Distance"), this); + action = new QAction(tr("By Distance…"), this); action->setData(atomColors); connect(action, SIGNAL(triggered()), SLOT(applyDistanceColors())); m_actions.append(action);