diff --git a/RetroBar/Taskbar.xaml.cs b/RetroBar/Taskbar.xaml.cs index d57b226d..c73b73b3 100644 --- a/RetroBar/Taskbar.xaml.cs +++ b/RetroBar/Taskbar.xaml.cs @@ -292,8 +292,12 @@ private void Taskbar_OnSizeChanged(object sender, SizeChangedEventArgs e) private void Taskbar_Deactivated(object sender, EventArgs e) { - // Prevent focus indicators and tooltips while not the active window - ResetControlFocus(); + if (AppBarMode != AppBarMode.AutoHide) + { + // Prevent focus indicators and tooltips while not the active window + // When auto-hide is enabled, this is performed by auto-hide events instead + ResetControlFocus(); + } } private void DateTimeMenuItem_OnClick(object sender, RoutedEventArgs e)