We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 68dfb4b + f81aa32 commit d8ab3a2Copy full SHA for d8ab3a2
1 file changed
src/emc/usr_intf/gmoccapy/gmoccapy.py
@@ -1924,7 +1924,9 @@ def _init_tooleditor(self):
1924
self.widgets.tooledit1.set_visible("abcxyzuvwijq", False)
1925
for axis in self.axis_list:
1926
self.widgets.tooledit1.set_visible("{0}".format(axis), True)
1927
-
+ # disconnect the key_press handler in the widget
1928
+ tv = self.widgets.tooledit1.wTree.get_object("treeview1")
1929
+ tv.disconnect_by_func(self.widgets.tooledit1.on_tree_navigate_key_press)
1930
# if it's a lathe config we show lathe related columns
1931
if self.lathe_mode:
1932
self.widgets.tooledit1.set_visible("ijq", True)
0 commit comments