mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-10-22 03:45:38 +00:00
Avoid flickering #1628
This commit is contained in:
@@ -71,14 +71,9 @@ public partial class ViewerWindow : INotifyPropertyChanged
|
|||||||
{
|
{
|
||||||
Dispatcher?.Invoke(() =>
|
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
|
// https://github.com/QL-Win/QuickLook/issues/1628
|
||||||
if (ContextObject.IsBusy)
|
|
||||||
{
|
|
||||||
ShowInTaskbar = true;
|
|
||||||
Title = $"QuickLook - {ContextObject.Title}";
|
Title = $"QuickLook - {ContextObject.Title}";
|
||||||
ShowInTaskbar = false;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user