diff --git a/SoundProfiler2/VersionAutoIncrement.tt b/SoundProfiler2/VersionAutoIncrement.tt index 79faf6c..447b347 100644 --- a/SoundProfiler2/VersionAutoIncrement.tt +++ b/SoundProfiler2/VersionAutoIncrement.tt @@ -8,7 +8,7 @@ using System.Reflection; <#+ int major = 0; - int minor = 4; + int minor = 5; static DateTime projectStartedDate = new DateTime(year: 2021, month: 8, day: 27); diff --git a/SoundProfiler2/ViewModels/MainViewModel.cs b/SoundProfiler2/ViewModels/MainViewModel.cs index eda5b84..7628536 100644 --- a/SoundProfiler2/ViewModels/MainViewModel.cs +++ b/SoundProfiler2/ViewModels/MainViewModel.cs @@ -225,7 +225,11 @@ private void MergeRefreshedAppsIntoActivesMixerApps(MixerApplicationModel[] newM } else { SafeDispatcher.Invoke(() => { - MixerApplications.Single(activeApp => activeApp.ProcessId == newApp.ProcessId).VolumeLevel = newApp.VolumeLevel; + MixerApplicationModel oldApp = MixerApplications.Single(activeApp => activeApp.ProcessId == newApp.ProcessId); + oldApp.VolumeLevel = newApp.VolumeLevel; + oldApp.ApplicationIcon = newApp.ApplicationIcon; + oldApp.FriendlyName = newApp.FriendlyName; + oldApp.ProcessName = newApp.ProcessName; }); } }