From dd928243612caab0c2091154ef53430514967dc7 Mon Sep 17 00:00:00 2001 From: Raymond Date: Sun, 12 Sep 2021 20:34:35 -0400 Subject: [PATCH] comment unused method --- Dalamud/Interface/Windowing/Window.cs | 28 +++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Dalamud/Interface/Windowing/Window.cs b/Dalamud/Interface/Windowing/Window.cs index 575a65b79..7b7c7bc72 100644 --- a/Dalamud/Interface/Windowing/Window.cs +++ b/Dalamud/Interface/Windowing/Window.cs @@ -220,20 +220,20 @@ namespace Dalamud.Interface.Windowing ImGui.PopID(); } - private void CheckState() - { - if (this.internalLastIsOpen != this.internalIsOpen) - { - if (this.internalIsOpen) - { - this.OnOpen(); - } - else - { - this.OnClose(); - } - } - } + // private void CheckState() + // { + // if (this.internalLastIsOpen != this.internalIsOpen) + // { + // if (this.internalIsOpen) + // { + // this.OnOpen(); + // } + // else + // { + // this.OnClose(); + // } + // } + // } private void ApplyConditionals() {