Skip to content

Commit

Permalink
Add or remove ellipsis for various menu entries
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew J. Milner <[email protected]>
  • Loading branch information
matterhorn103 committed Nov 10, 2024
1 parent ec0897d commit 75e649a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion avogadro/qtgui/rwmolecule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ void RWMolecule::addUnitCell()
m_molecule.setUnitCell(cell);

auto* comm = new AddUnitCellCommand(*this, *m_molecule.unitCell());
comm->setText(tr("Add Unit Cell"));
comm->setText(tr("Add Unit Cell"));
m_undoStack.push(comm);
emitChanged(Molecule::UnitCell | Molecule::Added);
}
Expand Down
2 changes: 1 addition & 1 deletion avogadro/qtplugins/select/select.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Select::Select(QObject* parent_)
connect(action, SIGNAL(triggered()), SLOT(selectSidechainAtoms()));
m_actions.append(action);

action = new QAction(tr("Select Water"), this);
action = new QAction(tr("Select Water"), this);
action->setProperty("menu priority", 850);
connect(action, SIGNAL(triggered()), SLOT(selectWater()));
m_actions.append(action);
Expand Down

0 comments on commit 75e649a

Please sign in to comment.