Fix typo in button tooltip

This commit is contained in:
baldurk
2026-06-29 11:08:38 +01:00
parent abd06a8d1c
commit 08e10b0230
+1 -2
View File
@@ -940,8 +940,7 @@ void ShaderViewer::debugShader(const ShaderReflection *shader, ResourceId pipeli
QAction *act;
act = MakeExecuteAction(tr("&Run forwards"), Icons::control_end_blue(),
tr("Run forwards to the start of the shader"),
QKeySequence(Qt::Key_F5));
tr("Run forwards to the end of the shader"), QKeySequence(Qt::Key_F5));
QObject::connect(act, &QAction::triggered, [this]() { runTo(~0U, true); });
forwardsMenu->addAction(act);