create sample from wavetable action

This commit is contained in:
Eknous-P 2024-12-08 23:36:03 +04:00 committed by tildearrow
parent 5a154eb7c9
commit 5f299996df
4 changed files with 41 additions and 0 deletions

View file

@ -379,6 +379,13 @@ void FurnaceGUI::drawWaveEdit() {
ImGui::EndPopup();
}
ImGui::SameLine();
if (ImGui::Button(ICON_FA_UPLOAD)) {
doAction(GUI_ACTION_WAVE_LIST_CREATE_SAMPLE);
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("create sample from wavetable"));
}
ImGui::SameLine();
if (ImGui::RadioButton(_("Steps"),waveEditStyle==0)) {
waveEditStyle=0;