소스 검색

Merge pull request #91996 from Maran23/ms-build-context-menu

Fix ContextMenu `Copy Error` is off in `MSBuild` Panel
Rémi Verschelde 1 년 전
부모
커밋
8663f27159
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      modules/mono/editor/GodotTools/GodotTools/Build/BuildProblemsView.cs

+ 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();
             }
         }