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 8e127d0 commit b703bcdCopy full SHA for b703bcd
1 file changed
Flow.Launcher.Plugin/Result.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.Collections.Generic;
3
using System.IO;
4
using System.Threading.Tasks;
@@ -164,10 +164,16 @@ public string BadgeIcoPath
164
[JsonIgnore]
165
public IconDelegate BadgeIcon = null;
166
167
+ private GlyphInfo _glyph;
168
+
169
/// <summary>
170
/// Information for Glyph Icon (Prioritized than IcoPath/Icon if user enable Glyph Icons)
171
/// </summary>
- public GlyphInfo Glyph { get; set; }
172
+ public GlyphInfo Glyph
173
+ {
174
+ get => _glyph;
175
+ set => _glyph = value;
176
+ }
177
178
179
/// An action to take in the form of a function call when the result has been selected.
0 commit comments