Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomseeen committed Oct 13, 2021
1 parent 46c88fe commit 02deb5a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SoundProfiler2/VersionAutoIncrement.tt
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
6 changes: 5 additions & 1 deletion SoundProfiler2/ViewModels/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
});
}
}
Expand Down

0 comments on commit 02deb5a

Please sign in to comment.