mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Disable backdrop control when use non-blur theme
This commit is contained in:
parent
f4b074c617
commit
ea5b3f1e4f
2 changed files with 10 additions and 7 deletions
|
|
@ -43,6 +43,7 @@ public partial class SettingsPaneThemeViewModel : BaseModel
|
|||
//uThemeManager.Instance.SetBlurForWindow();
|
||||
}
|
||||
}
|
||||
public bool IsBackdropEnabled => SelectedTheme?.HasBlur ?? false;
|
||||
|
||||
public bool DropShadowEffect
|
||||
{
|
||||
|
|
|
|||
|
|
@ -467,13 +467,15 @@
|
|||
Sub="{DynamicResource shadowEffectRestart}">
|
||||
|
||||
<ComboBox
|
||||
MinWidth="160"
|
||||
VerticalAlignment="Center"
|
||||
DisplayMemberPath="Display"
|
||||
FontSize="14"
|
||||
ItemsSource="{Binding BackdropTypesList}"
|
||||
SelectedValue="{Binding BackdropType, Mode=TwoWay}"
|
||||
SelectedValuePath="Value" />
|
||||
MinWidth="160"
|
||||
VerticalAlignment="Center"
|
||||
DisplayMemberPath="Display"
|
||||
FontSize="14"
|
||||
ItemsSource="{Binding BackdropTypesList}"
|
||||
SelectedValue="{Binding BackdropType, Mode=TwoWay}"
|
||||
SelectedValuePath="Value"
|
||||
IsEnabled="{Binding IsBackdropEnabled}" />
|
||||
<!-- ✅ 추가 -->
|
||||
</cc:Card>
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue