Skip to content

Commit

Permalink
RolandPheasant#204 - Truncate Zoom Settings text to full integer.
Browse files Browse the repository at this point in the history
  • Loading branch information
ben.bishop authored and ben.bishop committed Jun 16, 2021
1 parent 0c0073e commit 9fa0ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/TailBlazer/Views/Options/GeneralOptionsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public GeneralOptionsViewModel(ISetting<GeneralOptions> setting)

ScaleText = this.WhenValueChanged(vm => vm.Scale)
.DistinctUntilChanged()
.Select(value => $"{value} %" )
.Select(value => $"{(uint)value} %" )
.ForBinding();

ScaleRatio = this.WhenValueChanged(vm => vm.Scale)
Expand Down

0 comments on commit 9fa0ee9

Please sign in to comment.