Skip to content

Commit

Permalink
Fix ContextMenu Copy Error is off in MSBuild Panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Maran23 committed May 15, 2024
1 parent 9f4dbc6 commit 32be459
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 32be459

Please sign in to comment.