GUI: sample improvements

- resample change C-4 note
- add duplicate option
This commit is contained in:
tildearrow 2022-04-12 02:15:12 -05:00
parent 3d94aef14b
commit 455cccdef0
4 changed files with 28 additions and 2 deletions

View file

@ -290,6 +290,10 @@ void FurnaceGUI::drawSampleList() {
doAction(GUI_ACTION_SAMPLE_LIST_ADD);
}
ImGui::SameLine();
if (ImGui::Button(ICON_FA_FILES_O "##SampleClone")) {
doAction(GUI_ACTION_SAMPLE_LIST_DUPLICATE);
}
ImGui::SameLine();
if (ImGui::Button(ICON_FA_FOLDER_OPEN "##SampleLoad")) {
doAction(GUI_ACTION_SAMPLE_LIST_OPEN);
}