From 6c45da713e0778f79f27d5326be0ade2ab6b01de Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Wed, 29 Oct 2025 18:16:42 +1000 Subject: [PATCH] popup at same time --- .../Features/CodeEditor/SharpIdeCodeEdit_SymbolHover.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolHover.cs b/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolHover.cs index 8ebbb63..e00e8f6 100644 --- a/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolHover.cs +++ b/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolHover.cs @@ -55,7 +55,6 @@ public partial class SharpIdeCodeEdit AddChild(symbolNameHoverWindow); symbolNameHoverWindow.Position = new Vector2I((int)startSymbolCharGlobalPos.X, (int)endSymbolCharGlobalPos.Y); - symbolNameHoverWindow.Popup(); var tooltipWindow = new Window(); tooltipWindow.WrapControls = true; @@ -141,6 +140,7 @@ public partial class SharpIdeCodeEdit AddChild(tooltipWindow); tooltipWindow.Position = new Vector2I((int)globalMousePosition.X, (int)startSymbolCharGlobalPos.Y + lineHeight); + symbolNameHoverWindow.Popup(); tooltipWindow.Popup(); } } \ No newline at end of file