impr: Update about page

This commit is contained in:
WerWolv
2025-08-27 21:27:06 +02:00
parent f0d2f94aef
commit 145c8ff804
2 changed files with 96 additions and 70 deletions

View File

@@ -1275,12 +1275,15 @@ namespace ImGuiExt {
}
bool BeginBox() {
PushStyleVar(ImGuiStyleVar_CellPadding, ImVec2(5, 5));
auto result = BeginTable("##box", 1, ImGuiTableFlags_BordersOuter | ImGuiTableFlags_SizingStretchSame);
TableNextRow();
TableNextColumn();
PushStyleVar(ImGuiStyleVar_CellPadding, hex::scaled(5, 5));
if (BeginTable("##box", 1, ImGuiTableFlags_BordersOuter | ImGuiTableFlags_SizingStretchSame)) {
TableNextRow();
TableNextColumn();
return result;
return true;
}
return false;
}
void EndBox() {