Skip to content
Snippets Groups Projects
Commit 17a1b22d authored by jsiegle's avatar jsiegle
Browse files

Disable changing directory name while recording

parent 3b4a1f6e
Branches
Tags
No related merge requests found
......@@ -656,6 +656,10 @@ void ControlPanel::startRecording()
playButton->setToggleState(true,false);
masterClock->startRecording(); // turn on recording
backgroundColour = Colour(255,0,0);
prependText->setEditable(false);
appendText->setEditable(false);
repaint();
}
......@@ -665,6 +669,10 @@ void ControlPanel::stopRecording()
masterClock->stopRecording();
newDirectoryButton->setEnabledState(true);
backgroundColour = Colour(58,58,58);
prependText->setEditable(true);
appendText->setEditable(true);
repaint();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment