Skip to content

Commit 30661cf

Browse files
committed
qtdragon_hd -fix setting of axis tool buttons on 4th/5th axes
Miss setting it to '4', and '5' instead of 'a' axis
1 parent 6368a13 commit 30661cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

share/qtvcp/screens/qtdragon_hd/qtdragon_hd_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,7 @@ def chk_use_touchplate_changed(self, state):
10321032

10331033
def chk_use_virtual_changed(self, state):
10341034
codestring = "CALCULATOR" if state else "ENTRY"
1035-
for i in ("x", "y", "z", "a"):
1035+
for i in ("x", "y", "z", "4", "5"):
10361036
self.w["axistoolbutton_" + i].set_dialog_code(codestring)
10371037
if self.probe:
10381038
self.probe.dialog_code = codestring

0 commit comments

Comments
 (0)