mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
impr: Update about page
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user