mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #4167 from Heck-R/dev
Fix: Result.Preview.Description Does not Display in Preview Panel
This commit is contained in:
commit
f95d41e093
2 changed files with 3 additions and 1 deletions
|
|
@ -526,7 +526,7 @@
|
|||
<TextBlock
|
||||
x:Name="PreviewSubTitle"
|
||||
Style="{DynamicResource PreviewItemSubTitleStyle}"
|
||||
Text="{Binding Result.SubTitle}" />
|
||||
Text="{Binding PreviewDescription}" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
|
|
|||
|
|
@ -288,6 +288,8 @@ namespace Flow.Launcher.ViewModel
|
|||
}
|
||||
}
|
||||
|
||||
public string PreviewDescription => Result.Preview?.Description ?? Result.SubTitle;
|
||||
|
||||
public Result Result { get; }
|
||||
public int ResultProgress
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue