Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/emc/usr_intf/gmoccapy/gmoccapy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1924,7 +1924,9 @@ def _init_tooleditor(self):
self.widgets.tooledit1.set_visible("abcxyzuvwijq", False)
for axis in self.axis_list:
self.widgets.tooledit1.set_visible("{0}".format(axis), True)

# disconnect the key_press handler in the widget
tv = self.widgets.tooledit1.wTree.get_object("treeview1")
tv.disconnect_by_func(self.widgets.tooledit1.on_tree_navigate_key_press)
# if it's a lathe config we show lathe related columns
if self.lathe_mode:
self.widgets.tooledit1.set_visible("ijq", True)
Expand Down
Loading