File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Flow.Launcher.Infrastructure/UserSettings Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ public CustomBrowserViewModel CustomBrowser
160
160
/// </summary>
161
161
public bool ShouldUsePinyin { get ; set ; } = false ;
162
162
163
- public bool UseQuickLook { get ; set ; } = false ;
163
+ public bool UseExternalPreview { get ; set ; } = false ;
164
164
165
165
public bool AlwaysPreview { get ; set ; } = false ;
166
166
Original file line number Diff line number Diff line change 868
868
<ui : ToggleSwitch
869
869
Grid.Column=" 2"
870
870
FocusVisualMargin =" 5"
871
- IsOn =" {Binding Settings.UseQuickLook }"
871
+ IsOn =" {Binding Settings.UseExternalPreview }"
872
872
Style =" {DynamicResource SideToggleSwitch}"
873
873
ToolTip =" {DynamicResource UseQuickLookToolTip}" />
874
874
<TextBlock Style =" {StaticResource Glyph}" >
Original file line number Diff line number Diff line change @@ -573,7 +573,7 @@ public string PreviewHotkey
573
573
[ RelayCommand ]
574
574
private void TogglePreview ( )
575
575
{
576
- if ( Settings . UseQuickLook && CanExternalPreviewSelectedResult ( out var path ) )
576
+ if ( Settings . UseExternalPreview && CanExternalPreviewSelectedResult ( out var path ) )
577
577
{
578
578
if ( Settings . AlwaysPreview == true && PreviewVisible )
579
579
{
@@ -653,7 +653,7 @@ public void ResetPreview()
653
653
654
654
private void UpdatePreview ( )
655
655
{
656
- if ( Settings . UseQuickLook )
656
+ if ( Settings . UseExternalPreview )
657
657
{
658
658
if ( CanExternalPreviewSelectedResult ( out var path ) )
659
659
{
You can’t perform that action at this time.
0 commit comments