mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
GUI: loop range buttons crs inc/dec should be 16
IT IS HARD TO FIT A DESCRIPTION IN 50 CHARS
This commit is contained in:
parent
68d962fcdb
commit
2cebd75236
1 changed files with 4 additions and 4 deletions
|
@ -151,7 +151,7 @@ void FurnaceGUI::drawSampleEdit() {
|
||||||
ImGui::Text("Loop Start");
|
ImGui::Text("Loop Start");
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
||||||
if (ImGui::InputInt("##LoopStartPosition",&sample->loopStart,1,10)) { MARK_MODIFIED
|
if (ImGui::InputInt("##LoopStartPosition",&sample->loopStart,1,16)) { MARK_MODIFIED
|
||||||
if (sample->loopStart<0) {
|
if (sample->loopStart<0) {
|
||||||
sample->loopStart=0;
|
sample->loopStart=0;
|
||||||
}
|
}
|
||||||
|
@ -173,7 +173,7 @@ void FurnaceGUI::drawSampleEdit() {
|
||||||
ImGui::Text("Loop End");
|
ImGui::Text("Loop End");
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
||||||
if (ImGui::InputInt("##LoopEndPosition",&sample->loopEnd,1,10)) { MARK_MODIFIED
|
if (ImGui::InputInt("##LoopEndPosition",&sample->loopEnd,1,16)) { MARK_MODIFIED
|
||||||
if (sample->loopEnd<sample->loopStart) {
|
if (sample->loopEnd<sample->loopStart) {
|
||||||
sample->loopEnd=sample->loopStart;
|
sample->loopEnd=sample->loopStart;
|
||||||
}
|
}
|
||||||
|
@ -734,7 +734,7 @@ void FurnaceGUI::drawSampleEdit() {
|
||||||
ImGui::Text("Loop Start");
|
ImGui::Text("Loop Start");
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
||||||
if (ImGui::InputInt("##LoopStartPosition",&sample->loopStart,1,10)) { MARK_MODIFIED
|
if (ImGui::InputInt("##LoopStartPosition",&sample->loopStart,1,16)) { MARK_MODIFIED
|
||||||
if (sample->loopStart<0) {
|
if (sample->loopStart<0) {
|
||||||
sample->loopStart=0;
|
sample->loopStart=0;
|
||||||
}
|
}
|
||||||
|
@ -756,7 +756,7 @@ void FurnaceGUI::drawSampleEdit() {
|
||||||
ImGui::Text("Loop End");
|
ImGui::Text("Loop End");
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
||||||
if (ImGui::InputInt("##LoopEndPosition",&sample->loopEnd,1,10)) { MARK_MODIFIED
|
if (ImGui::InputInt("##LoopEndPosition",&sample->loopEnd,1,16)) { MARK_MODIFIED
|
||||||
if (sample->loopEnd<sample->loopStart) {
|
if (sample->loopEnd<sample->loopStart) {
|
||||||
sample->loopEnd=sample->loopStart;
|
sample->loopEnd=sample->loopStart;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue