Skip to content

Commit 41c3f8a

Browse files
authored
Merge pull request #411 from Flow-Launcher/fix_null_subtitle
Dev branch: Fix optional subtitle
2 parents 054c004 + f0a7391 commit 41c3f8a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Flow.Launcher.Plugin/Result.cs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,18 @@ public class Result
1010
{
1111

1212
private string _pluginDirectory;
13+
1314
private string _icoPath;
15+
16+
/// <summary>
17+
/// Provides the title of the result. This is always required.
18+
/// </summary>
1419
public string Title { get; set; }
15-
public string SubTitle { get; set; }
20+
21+
/// <summary>
22+
/// Provides additional details for the result. This is optional
23+
/// </summary>
24+
public string SubTitle { get; set; } = string.Empty;
1625

1726
/// <summary>
1827
/// This holds the action keyword that triggered the result.

0 commit comments

Comments
 (0)