mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-26 21:17:20 -08:00
14 lines
401 B
C#
14 lines
401 B
C#
|
using Avalonia.Data.Converters;
|
|||
|
|
|||
|
namespace SourceGit.Converters
|
|||
|
{
|
|||
|
public static class FontSizeModifyConverters
|
|||
|
{
|
|||
|
public static FuncValueConverter<double, double> Increase =
|
|||
|
new FuncValueConverter<double, double>(v => v + 1.0);
|
|||
|
|
|||
|
public static FuncValueConverter<double, double> Decrease =
|
|||
|
new FuncValueConverter<double, double>(v => v - 1.0);
|
|||
|
}
|
|||
|
}
|