Fix broken label in touch mapping dialog (#6489)

This commit is contained in:
coop152 2023-04-30 16:28:49 +01:00 committed by GitHub
parent 7327c334ca
commit 9dc71e3347
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

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) {