Browse Source

don't show founder's pack onb in founders edition

Krzysztof Krysiński 3 months ago
parent
commit
ef4a267ff3
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/PixiEditor/ViewModels/UserPreferences/OnboardingViewModel.cs

+ 2 - 0
src/PixiEditor/ViewModels/UserPreferences/OnboardingViewModel.cs

@@ -51,7 +51,9 @@ internal class OnboardingViewModel : PixiObservableObject
         new FormStep { Title = new LocalizedString("LANGUAGE"), Step = 1 },
         new FormStep { Title = new LocalizedString("ONB_SHORTCUTS"), Step = 2 },
         new FormStep { Title = new LocalizedString("ONB_ANALYTICS"), Step = 3 },
+#if !FOUNDERS_PACK_REQUIRED
         new FormStep { Title = new LocalizedString("FOUNDERS_BUNDLE"), Step = 4 }
+#endif
     };
 
     public RelayCommand NextFormStepCommand { get; }