diff --git a/src/recordpanel.cpp b/src/recordpanel.cpp --- a/src/recordpanel.cpp +++ b/src/recordpanel.cpp @@ -53,6 +53,12 @@ RecordPanel::RecordPanel(DataRecorder* r connect(ui->cbRecordPaused, SIGNAL(toggled(bool)), this, SIGNAL(recordPausedChanged(bool))); + + connect(ui->cbDisableBuffering, &QCheckBox::toggled, + [this](bool enabled) + { + _recorder->disableBuffering = enabled; + }); } RecordPanel::~RecordPanel()