mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
Adjust to Excel renames
This commit is contained in:
parent
62b8b0834c
commit
a659cd8a49
1 changed files with 4 additions and 4 deletions
|
|
@ -126,17 +126,17 @@ internal class UiColorWidget : IDataWindowWidget
|
||||||
ImGui.TableNextColumn();
|
ImGui.TableNextColumn();
|
||||||
ImGui.AlignTextToFramePadding();
|
ImGui.AlignTextToFramePadding();
|
||||||
ImGui.PushID($"row{id}_white");
|
ImGui.PushID($"row{id}_white");
|
||||||
if (this.DrawColorColumn(row.Unknown0) &&
|
if (this.DrawColorColumn(row.ClearWhite) &&
|
||||||
adjacentRow.HasValue)
|
adjacentRow.HasValue)
|
||||||
DrawEdgePreview(id, row.Unknown0, adjacentRow.Value.Unknown0);
|
DrawEdgePreview(id, row.ClearWhite, adjacentRow.Value.ClearWhite);
|
||||||
ImGui.PopID();
|
ImGui.PopID();
|
||||||
|
|
||||||
ImGui.TableNextColumn();
|
ImGui.TableNextColumn();
|
||||||
ImGui.AlignTextToFramePadding();
|
ImGui.AlignTextToFramePadding();
|
||||||
ImGui.PushID($"row{id}_green");
|
ImGui.PushID($"row{id}_green");
|
||||||
if (this.DrawColorColumn(row.Unknown1) &&
|
if (this.DrawColorColumn(row.ClearGreen) &&
|
||||||
adjacentRow.HasValue)
|
adjacentRow.HasValue)
|
||||||
DrawEdgePreview(id, row.Unknown1, adjacentRow.Value.Unknown1);
|
DrawEdgePreview(id, row.ClearGreen, adjacentRow.Value.ClearGreen);
|
||||||
ImGui.PopID();
|
ImGui.PopID();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue