ImGui Cleanup - Move Experimental entries, clean up presets (#2725)

* ImGui cleanup

* Fix Wii U

* Fix Wii U build 2: Electric Boogaloo

* Review comments

* Review Comments 2: Electric Boogaloo
This commit is contained in:
aMannus
2023-04-21 22:05:38 +02:00
committed by GitHub
parent 359cc3d5f6
commit 37c0345529
4 changed files with 159 additions and 130 deletions
+6 -2
View File
@@ -102,9 +102,13 @@ namespace UIWidgets {
}
void PaddedSeparator(bool padTop, bool padBottom, float extraVerticalTopPadding, float extraVerticalBottomPadding) {
if (padTop) Spacer(0);
if (padTop) {
Spacer(extraVerticalTopPadding);
}
ImGui::Separator();
if (padBottom) Spacer(0);
if (padBottom) {
Spacer(extraVerticalBottomPadding);
}
}
void RenderCross(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz) {