From 28dd389ff364232347f0700a7c2a2ccaa6c1b589 Mon Sep 17 00:00:00 2001 From: Geoff Hutchison Date: Sun, 10 Dec 2023 14:28:37 -0500 Subject: [PATCH] [skip ci] Insert fragment => Insert molecule by popular request Signed-off-by: Geoff Hutchison --- avogadro/qtplugins/insertfragment/insertfragment.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avogadro/qtplugins/insertfragment/insertfragment.cpp b/avogadro/qtplugins/insertfragment/insertfragment.cpp index 6a1cd8a7e6..7c9a42895f 100644 --- a/avogadro/qtplugins/insertfragment/insertfragment.cpp +++ b/avogadro/qtplugins/insertfragment/insertfragment.cpp @@ -29,7 +29,7 @@ InsertFragment::InsertFragment(QObject* parent_) : Avogadro::QtGui::ExtensionPlugin(parent_), m_crystalDialog(nullptr), m_moleculeDialog(nullptr), m_reader(nullptr), m_molecule(nullptr) { - auto* action = new QAction(tr("Fragment…"), this); + auto* action = new QAction(tr("Molecule…"), this); action->setProperty("menu priority", 890); action->setData("molecules"); // will also work for crystals connect(action, SIGNAL(triggered()), SLOT(showDialog()));