mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-16 16:05:00 +00:00
parent
65a9406c9a
commit
9aba737d9e
5 changed files with 206 additions and 20 deletions
|
@ -22,6 +22,9 @@ namespace SourceGit.Converters
|
|||
public static readonly FuncValueConverter<int, bool> IsNotOne =
|
||||
new FuncValueConverter<int, bool>(v => v != 1);
|
||||
|
||||
public static readonly FuncValueConverter<int, bool> IsTwo =
|
||||
new FuncValueConverter<int, bool>(v => v == 2);
|
||||
|
||||
public static readonly FuncValueConverter<int, bool> IsSubjectLengthBad =
|
||||
new FuncValueConverter<int, bool>(v => v > ViewModels.Preferences.Instance.SubjectGuideLength);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue