mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix typo
This commit is contained in:
parent
c622edab99
commit
24e526b03d
2 changed files with 3 additions and 3 deletions
|
|
@ -429,7 +429,7 @@
|
|||
</Grid>
|
||||
</Border>
|
||||
<ContentControl Content="{Binding Result.PreviewPanel.Value}"
|
||||
Visibility="{Binding ShowCustomizedPrewview}" />
|
||||
Visibility="{Binding ShowCustomizedPreview}" />
|
||||
</Grid>
|
||||
</Grid>
|
||||
</StackPanel>
|
||||
|
|
|
|||
|
|
@ -32,8 +32,8 @@ namespace Flow.Launcher.ViewModel
|
|||
if (PreviewExtension != null)
|
||||
{
|
||||
PreviewExtension = PreviewExtension.ToLowerInvariant();
|
||||
|
||||
}
|
||||
else if ()
|
||||
|
||||
if (Result.Glyph is { FontFamily: not null } glyph)
|
||||
{
|
||||
|
|
@ -79,7 +79,7 @@ namespace Flow.Launcher.ViewModel
|
|||
|
||||
public Visibility ShowDefaultPreview => Result.PreviewPanel == null ? Visibility.Visible : Visibility.Collapsed;
|
||||
|
||||
public Visibility ShowCustomizedPrewview => Result.PreviewPanel == null ? Visibility.Collapsed : Visibility.Visible;
|
||||
public Visibility ShowCustomizedPreview => Result.PreviewPanel == null ? Visibility.Collapsed : Visibility.Visible;
|
||||
|
||||
public Visibility ShowIcon
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue