Skip to content

Commit

Permalink
Make "brush slot #n" text translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
askmeaboutlo0m committed Aug 9, 2023
1 parent 8950e9d commit 955ff52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/desktop/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3724,7 +3724,7 @@ void MainWindow::setupActions()

m_brushSlots = new QActionGroup(this);
for(int i=0;i<6;++i) {
QAction *q = new QAction(QString("Brush slot #%1").arg(i+1), this);
QAction *q = new QAction(tr("Brush slot #%1").arg(i+1), this);
q->setAutoRepeat(false);
q->setObjectName(QString("quicktoolslot-%1").arg(i));
q->setShortcut(QKeySequence(QString::number(i+1)));
Expand Down

0 comments on commit 955ff52

Please sign in to comment.