Skip to content

Commit 197c841

Browse files
committed
Merge branch 'master' of github.com:clementgallet/libTAS
2 parents f6e9940 + afc12f3 commit 197c841

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/program/ui/InputEditorWindow.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,26 +85,26 @@ InputEditorWindow::InputEditorWindow(Context* c, MovieFile *movie, QWidget *pare
8585
QMenu* optionMenu = menuBar()->addMenu(tr("Options"));
8686

8787
scrollingAct = optionMenu->addAction(tr("Disable autoscrolling"), this,
88-
[=, this](bool checked){context->config.editor_autoscroll = !checked;});
88+
[=, this](bool checked){context->config.editor_autoscroll = !checked;}, QKeySequence("Alt+D"));
8989
scrollingAct->setCheckable(true);
9090

9191
rewindAct = optionMenu->addAction(tr("Rewind seeks to current frame"), this,
92-
[=, this](bool checked){context->config.editor_rewind_seek = checked;});
92+
[=, this](bool checked){context->config.editor_rewind_seek = checked;}, QKeySequence("Alt+R"));
9393

9494
rewindAct->setCheckable(true);
9595

9696
fastforwardAct = optionMenu->addAction(tr("Disable fastforward during rewind"), this,
97-
[=, this](bool checked){context->config.editor_rewind_fastforward = !checked;});
97+
[=, this](bool checked){context->config.editor_rewind_fastforward = !checked;}, QKeySequence("Alt+F"));
9898

9999
fastforwardAct->setCheckable(true);
100100

101101
markerPauseAct = optionMenu->addAction(tr("Autopause on markers"), this,
102-
[=, this](bool checked){context->config.editor_marker_pause = checked;});
102+
[=, this](bool checked){context->config.editor_marker_pause = checked;}, QKeySequence("Alt+A"));
103103

104104
markerPauseAct->setCheckable(true);
105105

106106
moveMarkerAct = optionMenu->addAction(tr("Move markers on frame addition or removal"), this,
107-
[=, this](bool checked){context->config.editor_move_marker = checked;});
107+
[=, this](bool checked){context->config.editor_move_marker = checked;}, QKeySequence("Alt+M"));
108108

109109
moveMarkerAct->setCheckable(true);
110110

0 commit comments

Comments
 (0)