From 9fa0ee9111ce3ab364d077b0f7667224ba4b6816 Mon Sep 17 00:00:00 2001 From: "ben.bishop" Date: Wed, 16 Jun 2021 16:55:43 -0400 Subject: [PATCH] #204 - Truncate Zoom Settings text to full integer. --- Source/TailBlazer/Views/Options/GeneralOptionsViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/TailBlazer/Views/Options/GeneralOptionsViewModel.cs b/Source/TailBlazer/Views/Options/GeneralOptionsViewModel.cs index 68a00017..e1b79fbe 100644 --- a/Source/TailBlazer/Views/Options/GeneralOptionsViewModel.cs +++ b/Source/TailBlazer/Views/Options/GeneralOptionsViewModel.cs @@ -61,7 +61,7 @@ public GeneralOptionsViewModel(ISetting setting) ScaleText = this.WhenValueChanged(vm => vm.Scale) .DistinctUntilChanged() - .Select(value => $"{value} %" ) + .Select(value => $"{(uint)value} %" ) .ForBinding(); ScaleRatio = this.WhenValueChanged(vm => vm.Scale)