Quellcode durchsuchen

Fix ContextMenu Copy Error is off in MSBuild Panel

Marius Hanl vor 1 Jahr
Ursprung
Commit
32be459e54

+ 1 - 1
modules/mono/editor/GodotTools/GodotTools/Build/BuildProblemsView.cs

@@ -280,7 +280,7 @@ namespace GodotTools.Build
 
             if (_problemsContextMenu.ItemCount > 0)
             {
-                _problemsContextMenu.Position = (Vector2I)(_problemsTree.GlobalPosition + position);
+                _problemsContextMenu.Position = (Vector2I)(GetScreenPosition() + position);
                 _problemsContextMenu.Popup();
             }
         }