Added log notifications when using Load Profile special action

It now seems doable speed wise. Related to issue #540.
This commit is contained in:
Travis Nickles 2019-01-07 19:35:30 -06:00
parent ac6116ea3d
commit 9dc23ebfc4

View File

@ -1841,6 +1841,9 @@ namespace DS4Windows
}
}
}
string prolog = Properties.Resources.UsingProfile.Replace("*number*", (device + 1).ToString()).Replace("*Profile name*", action.details);
AppLogger.LogToGui(prolog, false);
LoadTempProfile(device, action.details, true, ctrl);
return;
}
@ -2209,6 +2212,8 @@ namespace DS4Windows
}
untriggeraction[device] = null;
string prolog = Properties.Resources.UsingProfile.Replace("*number*", (device + 1).ToString()).Replace("*Profile name*", ProfilePath[device]);
AppLogger.LogToGui(prolog, false);
LoadProfile(device, false, ctrl);
}
}