Skip to content

Commit

Permalink
important fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gro-ove committed Dec 8, 2018
1 parent 7b42699 commit ea3091b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion AcManager.Tools/Helpers/AcSettings/ControlsSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,8 @@ private void EntryPropertyChanged(object sender, PropertyChangedEventArgs e) {
try {
_skip = true;
foreach (var entry in Entries.OfType<IDirectInputEntry>().Where(x => x.Id == HandbrakeId
&& x.Device?.Same(senderEntry.Device) != true)) {
&& x.Device?.Same(senderEntry.Device) != true
&& !(x is ControllerButtonEntry))) {
entry.Clear();
}
} finally {
Expand Down
2 changes: 1 addition & 1 deletion AcManager/AcManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<TargetZone>LocalIntranet</TargetZone>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
<GenerateManifests>false</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>1C50C8B86DDF7F1AC6E4F6C16886EF163542FF71</ManifestCertificateThumbprint>
Expand Down

0 comments on commit ea3091b

Please sign in to comment.