Skip to content

Commit

Permalink
fix: osx build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
timschneeb committed May 17, 2024
1 parent 06dbb20 commit ac403fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GalaxyBudsClient/Interface/MainWindow.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void BringToFront()
}

#if OSX
GalaxyBudsClient.Platform.OSX.Unmanaged.AppUtils.setHideInDock(false);
GalaxyBudsClient.Platform.OSX.AppUtils.setHideInDock(false);
#endif
Show();

Expand All @@ -218,7 +218,7 @@ public void BringToFront()
private void BringToTray()
{
#if OSX
GalaxyBudsClient.Platform.OSX.Unmanaged.AppUtils.setHideInDock(true);
GalaxyBudsClient.Platform.OSX.AppUtils.setHideInDock(true);
#endif
Hide();
}
Expand Down

0 comments on commit ac403fb

Please sign in to comment.