From 1453c2d553bd07880ecd644a20167ba4efe9e045 Mon Sep 17 00:00:00 2001 From: goat Date: Thu, 23 Jan 2020 02:45:37 +0900 Subject: [PATCH] fix: remove logging in SetCursorDetour to avoid big log files --- Dalamud/Interface/InterfaceManager.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dalamud/Interface/InterfaceManager.cs b/Dalamud/Interface/InterfaceManager.cs index 6b08c4b5f..ddcd2f4d2 100644 --- a/Dalamud/Interface/InterfaceManager.cs +++ b/Dalamud/Interface/InterfaceManager.cs @@ -126,8 +126,6 @@ namespace Dalamud.Interface private bool lastWantCapture = false; private IntPtr SetCursorDetour(IntPtr hCursor) { - Log.Debug($"hCursor: {hCursor.ToInt64():X} WantCapture: {this.lastWantCapture}"); - if (this.lastWantCapture == true && (!scene?.IsImGuiCursor(hCursor) ?? false)) return IntPtr.Zero;