diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-16 09:32:06 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-16 09:32:06 +0200 |
commit | 8663f2715917098a36ba5dc7a392bf0f2993c43b (patch) | |
tree | 92839e88c05956566d8a17f9986f37917aee1128 /modules | |
parent | 944b95e1a5a9c01314224c9ec34ace3fb80dc336 (diff) | |
parent | 32be459e54fe83b189392f9bb731943d09b9e265 (diff) | |
download | redot-engine-8663f2715917098a36ba5dc7a392bf0f2993c43b.tar.gz |
Merge pull request #91996 from Maran23/ms-build-context-menu
Fix ContextMenu `Copy Error` is off in `MSBuild` Panel
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/Build/BuildProblemsView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/Build/BuildProblemsView.cs b/modules/mono/editor/GodotTools/GodotTools/Build/BuildProblemsView.cs index b6d6d9ebf8..35a62a0eab 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Build/BuildProblemsView.cs +++ b/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(); } } |