mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-14 20:29:07 +00:00
Global dark theme
This commit is contained in:
@@ -37,7 +37,7 @@ namespace QuickLook.Common.Plugin
|
||||
private bool _titlebarBlurVisibility;
|
||||
private bool _titlebarColourVisibility = true;
|
||||
private bool _titlebarOverlap;
|
||||
private bool _useDarkTheme;
|
||||
private Themes _theme = Themes.None;
|
||||
private object _viewerContent;
|
||||
|
||||
/// <summary>
|
||||
@@ -168,12 +168,12 @@ namespace QuickLook.Common.Plugin
|
||||
/// <summary>
|
||||
/// Switch to dark theme?
|
||||
/// </summary>
|
||||
public bool UseDarkTheme
|
||||
public Themes Theme
|
||||
{
|
||||
get => _useDarkTheme;
|
||||
get => _theme;
|
||||
set
|
||||
{
|
||||
_useDarkTheme = value;
|
||||
_theme = value;
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
@@ -213,7 +213,7 @@ namespace QuickLook.Common.Plugin
|
||||
CanResize = true;
|
||||
FullWindowDragging = false;
|
||||
|
||||
UseDarkTheme = false;
|
||||
Theme = Themes.None;
|
||||
TitlebarOverlap = false;
|
||||
TitlebarAutoHide = false;
|
||||
TitlebarBlurVisibility = false;
|
||||
|
Reference in New Issue
Block a user