We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 239c9d7 commit 70ea6a8Copy full SHA for 70ea6a8
Flow.Launcher/ResultListBox.xaml
@@ -82,8 +82,8 @@
82
BorderThickness="0">
83
<Image
84
x:Name="ImageIcon"
85
- Width="32"
86
- Height="32"
+ Width="{Binding IconXY}"
+ Height="{Binding IconXY}"
87
Margin="0,0,0,0"
88
HorizontalAlignment="Center"
89
Source="{Binding Image, TargetNullValue={x:Null}}"
Flow.Launcher/ViewModel/ResultViewModel.cs
@@ -165,6 +165,8 @@ private async ValueTask LoadImageAsync()
165
166
public string QuerySuggestionText { get; set; }
167
168
+ public double IconXY { get; set; } = 32;
169
+
170
public override bool Equals(object obj)
171
{
172
return obj is ResultViewModel r && Result.Equals(r.Result);
0 commit comments