Skip to content

Commit b703bcd

Browse files
committed
Try to fix combability issue
1 parent 8e127d0 commit b703bcd

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

Flow.Launcher.Plugin/Result.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Threading.Tasks;
@@ -164,10 +164,16 @@ public string BadgeIcoPath
164164
[JsonIgnore]
165165
public IconDelegate BadgeIcon = null;
166166

167+
private GlyphInfo _glyph;
168+
167169
/// <summary>
168170
/// Information for Glyph Icon (Prioritized than IcoPath/Icon if user enable Glyph Icons)
169171
/// </summary>
170-
public GlyphInfo Glyph { get; set; }
172+
public GlyphInfo Glyph
173+
{
174+
get => _glyph;
175+
set => _glyph = value;
176+
}
171177

172178
/// <summary>
173179
/// An action to take in the form of a function call when the result has been selected.

0 commit comments

Comments
 (0)