Skip to content

Commit

Permalink
Merge pull request godotengine#91996 from Maran23/ms-build-context-menu
Browse files Browse the repository at this point in the history
Fix ContextMenu `Copy Error` is off in `MSBuild` Panel
  • Loading branch information
akien-mga committed May 16, 2024
2 parents 944b95e + 32be459 commit 8663f27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ private void ShowProblemContextMenu(Vector2 position, long mouseButtonIndex)

if (_problemsContextMenu.ItemCount > 0)
{
_problemsContextMenu.Position = (Vector2I)(_problemsTree.GlobalPosition + position);
_problemsContextMenu.Position = (Vector2I)(GetScreenPosition() + position);
_problemsContextMenu.Popup();
}
}
Expand Down

0 comments on commit 8663f27

Please sign in to comment.