uncomment the keyboard binding, so that press enter can trigger an event

This commit is contained in:
daq 2022-07-17 12:16:36 -05:00
parent a8c9416fe8
commit ffc09c7278

View File

@ -102,11 +102,11 @@ layout.append([sg.Combo(comboList, default_value = comboList[0], size = 20, enab
window = sg.Window('Iseg HV Control & Monitor', layout, finalize = True, keep_on_top = True) window = sg.Window('Iseg HV Control & Monitor', layout, finalize = True, keep_on_top = True)
#for i in range(0, nChannel): for i in range(0, nChannel):
# window[("v%d" % chList[i])].bind("<Return>", "_Enter") window[("v%d" % chList[i])].bind("<Return>", "_Enter")
# window[("i%d" % chList[i])].bind("<Return>", "_Enter") window[("i%d" % chList[i])].bind("<Return>", "_Enter")
# window[("v%d" % chList[i])].bind("<KP_Enter>", "_Enter") window[("v%d" % chList[i])].bind("<KP_Enter>", "_Enter")
# window[("i%d" % chList[i])].bind("<KP_Enter>", "_Enter") window[("i%d" % chList[i])].bind("<KP_Enter>", "_Enter")
# Event Loop to process "events" and get the "values" of the inputs # Event Loop to process "events" and get the "values" of the inputs
while True: while True: