diff --git a/CHANGELIST.md b/CHANGELIST.md index 4a16d66d..0ed0ac9c 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -5,6 +5,7 @@ - Limit media type visibility further - Set media type visibility when options changed - Change label with media type visibility +- Update media type visibility on system change ### 3.4.0 (2025-09-25) diff --git a/MPF.UI/Windows/MainWindow.xaml.cs b/MPF.UI/Windows/MainWindow.xaml.cs index dc278dec..e02dd20c 100644 --- a/MPF.UI/Windows/MainWindow.xaml.cs +++ b/MPF.UI/Windows/MainWindow.xaml.cs @@ -628,7 +628,10 @@ namespace MPF.UI.Windows public void SystemTypeComboBoxSelectionChanged(object sender, SelectionChangedEventArgs e) { if (MainViewModel.CanExecuteSelectionChanged) + { MainViewModel.ChangeSystem(); + SetMediaTypeVisibility(); + } } ///