Skip to content

Commit 50cabb2

Browse files
committed
Fix disk space warning message
1 parent 01a7a3f commit 50cabb2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Processors/RecordNode/RecordNodeEditor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ void FifoMonitor::timerCallback()
580580
// Stop recording and show warning when less than 5 minutes of disk space left
581581
if (dataRate > 0 && recordingTimeLeftInSeconds < 60*5) {
582582
CoreServices::setRecordingStatus(false);
583-
String msg = "Recording stopped. Less than 60 seconds of disk space remaining.";
583+
String msg = "Recording stopped. Less than 5 minutes of disk space remaining.";
584584
AlertWindow::showMessageBoxAsync(AlertWindow::WarningIcon, "WARNING", msg);
585585
}
586586

0 commit comments

Comments
 (0)