Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tray tooltip more consistently #1426

Merged
merged 2 commits into from
Aug 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions EarTrumpet/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,16 +121,23 @@ private void CompleteStartup()
DisplayFirstRunExperience();
}

private void updateTrayTooltip()
riverar marked this conversation as resolved.
Show resolved Hide resolved
{
_trayIcon.SetTooltip(CollectionViewModel.GetTrayToolTip());

var hWndTray = WindowsTaskbar.GetTrayToolbarWindowHwnd();
var hWndTooltip = User32.SendMessage(hWndTray, User32.TB_GETTOOLTIPS, IntPtr.Zero, IntPtr.Zero);
User32.SendMessage(hWndTooltip, User32.TTM_POPUP, IntPtr.Zero, IntPtr.Zero);
}

private void trayIconScrolled(object _, int wheelDelta)
{
if (Settings.UseScrollWheelInTray && (!Settings.UseGlobalMouseWheelHook || _flyoutViewModel.State == FlyoutViewState.Hidden))
{
var hWndTray = WindowsTaskbar.GetTrayToolbarWindowHwnd();
var hWndTooltip = User32.SendMessage(hWndTray, User32.TB_GETTOOLTIPS, IntPtr.Zero, IntPtr.Zero);
User32.SendMessage(hWndTooltip, User32.TTM_POPUP, IntPtr.Zero, IntPtr.Zero);

CollectionViewModel.Default?.IncrementVolume(Math.Sign(wheelDelta) * 2);
}

updateTrayTooltip();
riverar marked this conversation as resolved.
Show resolved Hide resolved
}

private void DisplayFirstRunExperience()
Expand Down