Browse Source

Changed hello there window to show whole version

CPKreuz 3 years ago
parent
commit
b6124360fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      PixiEditor/Views/Dialogs/HelloTherePopup.xaml.cs

+ 1 - 1
PixiEditor/Views/Dialogs/HelloTherePopup.xaml.cs

@@ -22,7 +22,7 @@ namespace PixiEditor.Views.Dialogs
             DependencyProperty.Register(nameof(RecentlyOpenedEmpty), typeof(bool), typeof(HelloTherePopup));
 
         public static string VersionText =>
-            $"v{AssemblyHelper.GetCurrentAssemblyVersion(x => $"{x.Major}.{x.Minor}" + (x.Build != 0 ? $".{x.Build}" : ""))}";
+            $"v{AssemblyHelper.GetCurrentAssemblyVersion()}";
 
         public FileViewModel FileViewModel { get => (FileViewModel)GetValue(FileViewModelProperty); set => SetValue(FileViewModelProperty, value); }