Minor tweak

This commit is contained in:
Travis Nickles 2019-12-31 00:48:24 -06:00
parent 2927bc20a6
commit d05eee4cce

View File

@ -70,7 +70,7 @@ namespace DS4WinWPF.DS4Forms.ViewModels.SpecialActions
Global.SaveAction(action.name, action.controls, 3, profilename, edit,
action.ucontrols +
(autoUntrigger ? ((action.ucontrols?.Length ?? 0) > 0 ? "/" : "") + "AutomaticUntrigger" : ""));
(autoUntrigger ? (action.ucontrols.Length > 0 ? "/" : "") + "AutomaticUntrigger" : ""));
}
}