mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-12-26 16:41:50 +01:00
Added Unbound preset menu item
This commit is contained in:
parent
8488e1de99
commit
129dd25d06
@ -64,6 +64,7 @@
|
||||
<MenuItem Header="Inverted X" Tag="7" CommandParameter="2" Click="PresetMenuItem_Click" />
|
||||
<MenuItem Header="Inverted Y" Tag="7" CommandParameter="3" Click="PresetMenuItem_Click" />
|
||||
</MenuItem>
|
||||
<MenuItem Header="Unbound" Tag="8" Click="PresetMenuItem_Click" />
|
||||
</ContextMenu>
|
||||
</Canvas.Resources>
|
||||
|
||||
|
@ -2190,6 +2190,15 @@ namespace DS4WinWPF.DS4Forms.ViewModels
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if (baseTag == 8)
|
||||
{
|
||||
actionBtns.AddRange(new object[5]
|
||||
{
|
||||
X360Controls.Unbound, X360Controls.Unbound,
|
||||
X360Controls.Unbound, X360Controls.Unbound,
|
||||
X360Controls.Unbound,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
switch (highlightControl)
|
||||
|
Loading…
Reference in New Issue
Block a user