Note for code maintainers: (1 Viewer)

A

Anonymous

Guest
In USBUIRT.cs, the following line (halfway through the file):

xmlwriter.SetValue("USBUIRT", "needsenter", inputCheckBox.Checked ? "true" : "false");


should be:

xmlwriter.SetValue("USBUIRT", "needsenter", enterCheckBox.Checked ? "true" : "false");
 

Users who are viewing this thread

Top Bottom