add a metronome

This commit is contained in:
tildearrow 2022-01-04 00:02:41 -05:00
parent 943e4e374f
commit 530a9bafc7
4 changed files with 66 additions and 0 deletions

View file

@ -273,6 +273,11 @@ void FurnaceGUI::drawEditControls() {
}
ImGui::SameLine();
ImGui::Checkbox("Edit",&edit);
ImGui::SameLine();
bool metro=e->getMetronome();
if (ImGui::Checkbox("Metronome",&metro)) {
e->setMetronome(metro);
}
ImGui::Text("Follow");
ImGui::SameLine();