Fix ESFM operator order for KVS dialog
This commit is contained in:
parent
a768583bff
commit
c2d91a06d3
|
@ -1477,7 +1477,7 @@ void FurnaceGUI::kvsConfig(DivInstrument* ins, bool supportsKVS) {
|
||||||
ImGui::TableSetupColumn("c2",ImGuiTableColumnFlags_WidthFixed);
|
ImGui::TableSetupColumn("c2",ImGuiTableColumnFlags_WidthFixed);
|
||||||
ImGui::TableSetupColumn("c3",ImGuiTableColumnFlags_WidthStretch);
|
ImGui::TableSetupColumn("c3",ImGuiTableColumnFlags_WidthStretch);
|
||||||
for (int i=0; i<4; i++) {
|
for (int i=0; i<4; i++) {
|
||||||
int o=(opCount==4)?orderedOps[i]:i;
|
int o=(opCount==4 && ins->type!=DIV_INS_ESFM)?orderedOps[i]:i;
|
||||||
if (!(i&1)) ImGui::TableNextRow();
|
if (!(i&1)) ImGui::TableNextRow();
|
||||||
const char* label="AUTO##OPKVS";
|
const char* label="AUTO##OPKVS";
|
||||||
if (ins->fm.op[o].kvs==0) {
|
if (ins->fm.op[o].kvs==0) {
|
||||||
|
|
Loading…
Reference in a new issue