From f73227f02fc2db591c6245be10bba997de0595ea Mon Sep 17 00:00:00 2001 From: Xjph Date: Wed, 21 Dec 2022 11:00:42 -0330 Subject: [PATCH] Update to avalonia 11 preview --- ObservatoryCore/ObservatoryCore.csproj | 20 ++++++++++--------- ObservatoryCore/UI/MainApplication.axaml | 7 +++---- ObservatoryCore/UI/Views/BasicUIView.axaml.cs | 6 +++--- .../ObservatoryExplorer.csproj | 2 +- 4 files changed, 18 insertions(+), 17 deletions(-) diff --git a/ObservatoryCore/ObservatoryCore.csproj b/ObservatoryCore/ObservatoryCore.csproj index 4ffa43d..723c26a 100644 --- a/ObservatoryCore/ObservatoryCore.csproj +++ b/ObservatoryCore/ObservatoryCore.csproj @@ -23,15 +23,17 @@ - - - - - - - - - + + + + + + + + + + + diff --git a/ObservatoryCore/UI/MainApplication.axaml b/ObservatoryCore/UI/MainApplication.axaml index 4f68128..d83efaa 100644 --- a/ObservatoryCore/UI/MainApplication.axaml +++ b/ObservatoryCore/UI/MainApplication.axaml @@ -7,10 +7,9 @@ - - - + + - + \ No newline at end of file diff --git a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs index 8e96d93..3b9d239 100644 --- a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs +++ b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs @@ -992,9 +992,9 @@ namespace Observatory.UI.Views NumericUpDown numericUpDown = new() { Value = intSetting, AllowSpin = true }; if (bounds != null) { - numericUpDown.Minimum = bounds.Minimum; - numericUpDown.Maximum = bounds.Maximum; - numericUpDown.Increment = bounds.Increment; + numericUpDown.Minimum = (decimal)bounds.Minimum; + numericUpDown.Maximum = (decimal)bounds.Maximum; + numericUpDown.Increment = (decimal)bounds.Increment; } numericUpDown.ValueChanged += (object sender, NumericUpDownValueChangedEventArgs e) => { diff --git a/ObservatoryExplorer/ObservatoryExplorer.csproj b/ObservatoryExplorer/ObservatoryExplorer.csproj index 2267812..4b0b304 100644 --- a/ObservatoryExplorer/ObservatoryExplorer.csproj +++ b/ObservatoryExplorer/ObservatoryExplorer.csproj @@ -32,7 +32,7 @@ - +