Fix broken label in touch mapping dialog (#6489)

This commit is contained in:
coop152
2023-04-30 17:28:49 +02:00
committed by GitHub
parent 7327c334ca
commit 9dc71e3347
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -2248,7 +2248,7 @@ void GMainWindow::UpdateStatusBar() {
message_label_used_for_movie = true;
ui->action_Save_Movie->setEnabled(true);
} else if (play_mode == Core::Movie::PlayMode::Playing) {
message_label->setText(tr("Playing %1 / %2").arg(current, total));
message_label->setText(tr("Playing %1 / %2").arg(current).arg(total));
message_label_used_for_movie = true;
ui->action_Save_Movie->setEnabled(false);
} else if (play_mode == Core::Movie::PlayMode::MovieFinished) {