mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
Fix rumble getting activated when opening options window when value is not 100
This commit is contained in:
parent
6716291a95
commit
95c5c7123d
@ -128,6 +128,8 @@ namespace DS4Windows
|
||||
|
||||
public void Reload(int deviceNum, string name)
|
||||
{
|
||||
nUDRumbleBoost.ValueChanged -= rumbleBoostBar_ValueChanged;
|
||||
|
||||
loading = true;
|
||||
device = deviceNum;
|
||||
filename = name;
|
||||
@ -506,6 +508,8 @@ namespace DS4Windows
|
||||
LoadActions(string.IsNullOrEmpty(filename));
|
||||
loading = false;
|
||||
saving = false;
|
||||
|
||||
nUDRumbleBoost.ValueChanged += new EventHandler(this.rumbleBoostBar_ValueChanged);
|
||||
}
|
||||
|
||||
private string getDS4ControlsByName(DS4Controls key)
|
||||
|
Loading…
Reference in New Issue
Block a user