Skip to content

Commit

Permalink
fix: set up manager table widths properly
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-is-cute committed Sep 7, 2023
1 parent bf645dc commit fe3ac9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Ui/Tabs/Manager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ internal void Draw() {
this._managerVisible = true;

if (ImGui.BeginTable("manager-table", 2, ImGuiTableFlags.Resizable)) {
ImGui.TableSetupColumn("mods", ImGuiTableColumnFlags.WidthFixed, 1);
ImGui.TableSetupColumn("content", ImGuiTableColumnFlags.WidthStretch, 3);
ImGui.TableSetupColumn("mods", ImGuiTableColumnFlags.WidthFixed, 0.25f);
ImGui.TableSetupColumn("content", ImGuiTableColumnFlags.WidthStretch, 0.75f);
ImGui.TableNextRow();

if (ImGui.TableSetColumnIndex(0)) {
Expand Down

0 comments on commit fe3ac9a

Please sign in to comment.