Skip to content

Commit

Permalink
CelView: Rename QActions of Add Frame to Append Frame
Browse files Browse the repository at this point in the history
This patch renames all QActions instances in CelView from Add Frame to Ap
Frame, this way it's more clearer for the user, since "Insert" option is
already adding frames, "Add" right now seems to be too ambiguous.
  • Loading branch information
tetektoza committed Nov 29, 2023
1 parent f99ea9a commit 099da1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/celview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ void CelView::ShowContextMenu(const QPoint &pos)
QObject::connect(&action0, SIGNAL(triggered()), mw, SLOT(actionInsertFrame_triggered()));
contextMenu.addAction(&action0);

QAction action1("Add Frame", this);
QAction action1("Append Frame", this);
action1.setToolTip("Add new frames at the end");
QObject::connect(&action1, SIGNAL(triggered()), mw, SLOT(actionAddFrame_triggered()));
contextMenu.addAction(&action1);
Expand Down

0 comments on commit 099da1f

Please sign in to comment.