diff --git a/Dalamud.CorePlugin/Dalamud.CorePlugin.csproj b/Dalamud.CorePlugin/Dalamud.CorePlugin.csproj index 8c714785c..aaeee5979 100644 --- a/Dalamud.CorePlugin/Dalamud.CorePlugin.csproj +++ b/Dalamud.CorePlugin/Dalamud.CorePlugin.csproj @@ -11,23 +11,22 @@ IDE0003 - - true - full - false - $(appData)\XIVLauncher\devPlugins\ + + $(AppData)\XIVLauncher\devPlugins\Dalamud.CorePlugin DEBUG;TRACE prompt 4 - + + true + full + false + + + pdbonly true - $(appData)\XIVLauncher\devPlugins\ - TRACE - prompt - 4 diff --git a/Dalamud.CorePlugin/PluginImpl.cs b/Dalamud.CorePlugin/PluginImpl.cs index 4d635eeb5..f23544cc0 100644 --- a/Dalamud.CorePlugin/PluginImpl.cs +++ b/Dalamud.CorePlugin/PluginImpl.cs @@ -2,6 +2,7 @@ using System; using System.IO; using Dalamud.Interface.Windowing; +using Dalamud.Logging; using Dalamud.Plugin; namespace Dalamud.CorePlugin diff --git a/Dalamud.CorePlugin/PluginWindow.cs b/Dalamud.CorePlugin/PluginWindow.cs index e604389ba..9147e9d93 100644 --- a/Dalamud.CorePlugin/PluginWindow.cs +++ b/Dalamud.CorePlugin/PluginWindow.cs @@ -11,8 +11,6 @@ namespace Dalamud.CorePlugin /// internal class PluginWindow : Window, IDisposable { - private static readonly ModuleLog Log = new("CorePlugin"); - private readonly Dalamud dalamud; /// @@ -20,13 +18,13 @@ namespace Dalamud.CorePlugin /// /// The Dalamud instance. public PluginWindow(Dalamud dalamud) - : base("CorePlugin", ImGuiWindowFlags.NoCollapse | ImGuiWindowFlags.NoResize | ImGuiWindowFlags.NoScrollbar) + : base("CorePlugin") { this.dalamud = dalamud; this.IsOpen = true; this.Size = new Vector2(810, 520); - this.SizeCondition = ImGuiCond.Always; + this.SizeCondition = ImGuiCond.FirstUseEver; } ///