From c98c3802d5e280f9f4739d3d6af4510692105daf Mon Sep 17 00:00:00 2001 From: Rafael Rivera Date: Wed, 9 Aug 2023 12:06:08 -0700 Subject: [PATCH] Nit --- EarTrumpet/App.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EarTrumpet/App.xaml.cs b/EarTrumpet/App.xaml.cs index e83cb96c4..b6ed3d375 100644 --- a/EarTrumpet/App.xaml.cs +++ b/EarTrumpet/App.xaml.cs @@ -121,7 +121,7 @@ private void CompleteStartup() DisplayFirstRunExperience(); } - private void updateTrayTooltip() + private void UpdateTrayTooltip() { _trayIcon.SetTooltip(CollectionViewModel.GetTrayToolTip()); @@ -137,7 +137,7 @@ private void trayIconScrolled(object _, int wheelDelta) CollectionViewModel.Default?.IncrementVolume(Math.Sign(wheelDelta) * 2); } - updateTrayTooltip(); + UpdateTrayTooltip(); } private void DisplayFirstRunExperience()