mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #411 from Flow-Launcher/fix_null_subtitle
Dev branch: Fix optional subtitle
This commit is contained in:
commit
41c3f8a793
1 changed files with 10 additions and 1 deletions
|
|
@ -10,9 +10,18 @@ namespace Flow.Launcher.Plugin
|
|||
{
|
||||
|
||||
private string _pluginDirectory;
|
||||
|
||||
private string _icoPath;
|
||||
|
||||
/// <summary>
|
||||
/// Provides the title of the result. This is always required.
|
||||
/// </summary>
|
||||
public string Title { get; set; }
|
||||
public string SubTitle { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Provides additional details for the result. This is optional
|
||||
/// </summary>
|
||||
public string SubTitle { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// This holds the action keyword that triggered the result.
|
||||
|
|
|
|||
Loading…
Reference in a new issue