Skip to content

Commit bf7de3b

Browse files
authored
Add ShowInTaskbar setting to display window in taskbar (#1818)
1 parent 1adb7ce commit bf7de3b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

QuickLook/ViewerWindow.xaml.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ internal ViewerWindow()
6464
Topmost = SettingHelper.Get("Topmost", false);
6565
buttonTop.Tag = Topmost ? "Top" : "Auto";
6666

67+
ShowInTaskbar = SettingHelper.Get("ShowInTaskbar", false);
68+
6769
buttonTop.Click += (_, _) =>
6870
{
6971
Topmost = !Topmost;

0 commit comments

Comments
 (0)