diff --git a/Dalamud.CorePlugin/PluginWindow.cs b/Dalamud.CorePlugin/PluginWindow.cs index c54c032c6..6a45941f2 100644 --- a/Dalamud.CorePlugin/PluginWindow.cs +++ b/Dalamud.CorePlugin/PluginWindow.cs @@ -13,9 +13,6 @@ namespace Dalamud.CorePlugin /// internal class PluginWindow : Window, IDisposable { - private Vector4 bgCol = ImGuiColors.HealerGreen; - private Vector4 textCol = ImGuiColors.DalamudWhite; - /// /// Initializes a new instance of the class. /// @@ -41,21 +38,6 @@ namespace Dalamud.CorePlugin /// public override void Draw() { - ImGui.ColorPicker4("bg", ref this.bgCol); - ImGui.ColorPicker4("text", ref this.textCol); - - ImGui.PushStyleColor(ImGuiCol.ChildBg, this.bgCol); - ImGui.PushStyleColor(ImGuiCol.Text, this.textCol); - - if (ImGui.BeginChild("##changelog", new Vector2(-1, 100), true, ImGuiWindowFlags.NoNavFocus | ImGuiWindowFlags.NoNavInputs | ImGuiWindowFlags.AlwaysAutoResize)) - { - ImGui.Text("Changelog:"); - ImGuiHelpers.ScaledDummy(2); - ImGui.TextWrapped("* ASIhif ai fdh adhsfuoadf\n* IUHoiaudsfh adsof hioaudshfuio husiodfh\n* A iiaojfdpasd ijopadfnklafwjenalkfjensgdlkjnasasdfbhnj"); - } - - ImGui.EndChild(); - ImGui.PopStyleColor(2); } } }