Radio button group indents everywhere.

This should be all of them.

Except, of course, the find/replace dialog. Those have a specific layout already.
This commit is contained in:
Electric Keet 2023-08-05 19:18:53 -07:00
parent aa39a041b5
commit 5ba51df566
3 changed files with 14 additions and 0 deletions

View file

@ -4013,6 +4013,7 @@ bool FurnaceGUI::loop() {
ImGui::Checkbox("loop",&vgmExportLoop);
if (vgmExportLoop && e->song.loopModality==2) {
ImGui::Text("loop trail:");
ImGui::Indent();
if (ImGui::RadioButton("auto-detect",vgmExportTrailingTicks==-1)) {
vgmExportTrailingTicks=-1;
}
@ -4028,6 +4029,7 @@ bool FurnaceGUI::loop() {
if (vgmExportTrailingTicks<0) vgmExportTrailingTicks=0;
}
}
ImGui::Unindent();
}
ImGui::Checkbox("add pattern change hints",&vgmExportPatternHints);
if (ImGui::IsItemHovered()) {