mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-08-17 05:41:46 -04:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user