parent
4dd935bbcc
commit
c8f57afda4
2 changed files with 21 additions and 1 deletions
|
|
@ -2036,6 +2036,10 @@ void FurnaceGUI::drawSampleList() {
|
|||
if (ImGui::Button(ICON_FA_VOLUME_UP "##PreviewSampleL")) {
|
||||
e->previewSample(curSample);
|
||||
}
|
||||
ImGui::SameLine();
|
||||
if (ImGui::Button(ICON_FA_VOLUME_OFF "##StopSampleL")) {
|
||||
e->stopSamplePreview();
|
||||
}
|
||||
ImGui::Separator();
|
||||
for (int i=0; i<(int)e->song.sample.size(); i++) {
|
||||
DivSample* sample=e->song.sample[i];
|
||||
|
|
@ -2108,6 +2112,10 @@ void FurnaceGUI::drawSampleEdit() {
|
|||
if (ImGui::Button(ICON_FA_VOLUME_UP "##PreviewSample")) {
|
||||
e->previewSample(curSample);
|
||||
}
|
||||
ImGui::SameLine();
|
||||
if (ImGui::Button(ICON_FA_VOLUME_OFF "##StopSample")) {
|
||||
e->stopSamplePreview();
|
||||
}
|
||||
ImGui::Separator();
|
||||
bool considerations=false;
|
||||
ImGui::Text("notes:");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue