Start recording stream on double-click

This commit is contained in:
0xb00bface 2021-10-01 20:29:59 +02:00
parent 07701de8c8
commit 498a20fe4e
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ public class RecordingsTab extends Tab implements TabSelectionListener, Shutdown
Recording recording = table.getSelectionModel().getSelectedItem();
if (recording != null) {
var state = recording.getStatus();
if(state == FINISHED || state == RECORDING && config.getSettings().localRecording) {
if(state == FINISHED || state == RECORDING) {
play(recording);
}
}