Changed Qt TAS playback buttons to trigger on press instead of release.

This commit is contained in:
mjbudd77 2021-12-20 21:59:41 -05:00
parent d0bdab8c63
commit a4d25deaf5
1 changed files with 5 additions and 5 deletions

View File

@ -1208,11 +1208,11 @@ void TasEditorWindow::buildSideControlPanel(void)
connect( rec3PBtn , &QRadioButton::clicked, [ this ] { recordInputChanged( MULTITRACK_RECORDING_3P ); } );
connect( rec4PBtn , &QRadioButton::clicked, [ this ] { recordInputChanged( MULTITRACK_RECORDING_4P ); } );
connect( rewindMkrBtn, SIGNAL(clicked(void)), this, SLOT(playbackFrameRewindFull(void)) );
connect( rewindFrmBtn, SIGNAL(clicked(void)), this, SLOT(playbackFrameRewind(void)) );
connect( playPauseBtn, SIGNAL(clicked(void)), this, SLOT(playbackPauseCB(void)) );
connect( advFrmBtn , SIGNAL(clicked(void)), this, SLOT(playbackFrameForward(void)) );
connect( advMkrBtn , SIGNAL(clicked(void)), this, SLOT(playbackFrameForwardFull(void)));
connect( rewindMkrBtn, SIGNAL(pressed(void)), this, SLOT(playbackFrameRewindFull(void)) );
connect( rewindFrmBtn, SIGNAL(pressed(void)), this, SLOT(playbackFrameRewind(void)) );
connect( playPauseBtn, SIGNAL(pressed(void)), this, SLOT(playbackPauseCB(void)) );
connect( advFrmBtn , SIGNAL(pressed(void)), this, SLOT(playbackFrameForward(void)) );
connect( advMkrBtn , SIGNAL(pressed(void)), this, SLOT(playbackFrameForwardFull(void)));
connect( followCursorCbox, SIGNAL(clicked(bool)), this, SLOT(playbackFollowCursorCb(bool)));
connect( turboSeekCbox , SIGNAL(clicked(bool)), this, SLOT(playbackTurboSeekCb(bool)));