From d300d74ba1b7888e455e28a2a585f280a9bda591 Mon Sep 17 00:00:00 2001 From: Geoff Hutchison Date: Tue, 19 Dec 2023 17:15:19 -0500 Subject: [PATCH] Use bullets instead of ellipses Signed-off-by: Geoff Hutchison --- avogadro/qtgui/scenepluginmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avogadro/qtgui/scenepluginmodel.cpp b/avogadro/qtgui/scenepluginmodel.cpp index 789fa918f4..6f4a396e26 100644 --- a/avogadro/qtgui/scenepluginmodel.cpp +++ b/avogadro/qtgui/scenepluginmodel.cpp @@ -86,7 +86,7 @@ QVariant ScenePluginModel::data(const QModelIndex& index_, int role) const switch (role) { case Qt::DisplayRole: case Qt::EditRole: - return (item->setupWidget() != nullptr) ? "…" : " "; + return (item->setupWidget() != nullptr) ? "•••" : " "; case Qt::ToolTipRole: case Qt::WhatsThisRole: return tr("Settings");