diff options
author | Marius Hanl <mariushanl@web.de> | 2024-05-15 22:55:05 +0200 |
---|---|---|
committer | Marius Hanl <mariushanl@web.de> | 2024-05-15 22:55:05 +0200 |
commit | 32be459e54fe83b189392f9bb731943d09b9e265 (patch) | |
tree | 83c9ebe578179489112d08149210c1588bf9cca4 /modules | |
parent | 9f4dbc64560cbea9722d866748d63eddb29d383f (diff) | |
download | redot-engine-32be459e54fe83b189392f9bb731943d09b9e265.tar.gz |
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(); } } |