From f7b22fb6005a47149caed3a19caeff16cc700de0 Mon Sep 17 00:00:00 2001 From: ema Date: Wed, 14 May 2025 03:33:45 +0800 Subject: [PATCH] Avoid flickering #1628 --- QuickLook/ViewerWindow.Properties.cs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/QuickLook/ViewerWindow.Properties.cs b/QuickLook/ViewerWindow.Properties.cs index 2cb2ef2..3fca2bc 100644 --- a/QuickLook/ViewerWindow.Properties.cs +++ b/QuickLook/ViewerWindow.Properties.cs @@ -71,14 +71,9 @@ public partial class ViewerWindow : INotifyPropertyChanged { Dispatcher?.Invoke(() => { - // We can not update the Title anytime + // We can not update the Title when ShowInTaskbar is false // https://github.com/QL-Win/QuickLook/issues/1628 - if (ContextObject.IsBusy) - { - ShowInTaskbar = true; - Title = $"QuickLook - {ContextObject.Title}"; - ShowInTaskbar = false; - } + Title = $"QuickLook - {ContextObject.Title}"; }); } break;