mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 13:14:59 +00:00
feature: add buttons to increase/decrease visible lines in text diff view (#145)
This commit is contained in:
parent
8d27690473
commit
1040bbe4d2
8 changed files with 77 additions and 30 deletions
|
@ -7,6 +7,9 @@ namespace SourceGit.Converters
|
|||
public static readonly FuncValueConverter<int, bool> IsGreaterThanZero =
|
||||
new FuncValueConverter<int, bool>(v => v > 0);
|
||||
|
||||
public static readonly FuncValueConverter<int, bool> IsGreaterThanFour =
|
||||
new FuncValueConverter<int, bool>(v => v > 4);
|
||||
|
||||
public static readonly FuncValueConverter<int, bool> IsZero =
|
||||
new FuncValueConverter<int, bool>(v => v == 0);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue