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 2867b5c commit c7004ddCopy full SHA for c7004dd
Save In Companion/MenuEntry.cs
@@ -12,14 +12,9 @@ namespace Save_In_Companion
12
/// </summary>
13
public class MenuEntry
14
{
15
- //Hack: Replacing - with spaces to avoid a bug that is within the current version of Save In which does not like -'s after the path.
16
- //Doing this in a dirty way to make it easy to rip out later, if and when the bug gets fixed.
17
- private string name;
18
- private string comment;
+ public string Name { get; set; }
19
20
- public string Name { get { return name; } set { name = value.Replace('-', ' '); } }
21
-
22
- public string Comment { get { return comment; } set { comment = value.Replace('-', ' '); } }
+ public string Comment { get; set; }
23
24
public string FolderPath { get; set; }
25
0 commit comments