Skip to content

Commit

Permalink
feat: TaskbarIcon.ShowContextMenu is public now.
Browse files Browse the repository at this point in the history
  • Loading branch information
HavenDV committed May 1, 2024
1 parent 8574be8 commit 41b70d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public partial class TaskbarIcon
/// Displays the ContextMenu/ContextFlyout if it was set.
/// </summary>
[SupportedOSPlatform("windows5.1.2600")]
private void ShowContextMenu(System.Drawing.Point cursorPosition)
public void ShowContextMenu(System.Drawing.Point cursorPosition)
{
if (IsDisposed)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public partial class TaskbarIcon
/// <summary>
/// Displays the ContextMenu/ContextFlyout if it was set.
/// </summary>
private void ShowContextMenu(System.Drawing.Point cursorPosition)
public void ShowContextMenu(System.Drawing.Point cursorPosition)
{
if (IsDisposed)
{
Expand Down

0 comments on commit 41b70d0

Please sign in to comment.