This commit is contained in:
stax76
2023-12-15 14:58:32 +01:00
parent b23542d681
commit 3af5b458ba
8 changed files with 363 additions and 12 deletions

View File

@@ -40,7 +40,7 @@ public class OptionSettingOption
public string? Text
{
get => string.IsNullOrEmpty(_text) ? Name : _text;
get => _text ?? Name;
set => _text = value;
}