Skip to content

Commit 507c66f

Browse files
authored
Merge pull request #1 from TRothfelder/TRothfelder-gmoccapy-type-fix
gmoccapy: fix type error
2 parents 064e963 + b624a31 commit 507c66f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/emc/usr_intf/gmoccapy/gmoccapy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ def _make_ref_axis_button(self):
722722
size=_DEFAULT_BB_SIZE,
723723
image_name=f"img_ref_{elem}"
724724
)
725-
btn.set_property("tooltip-text", _("Press to home {0} {1}").format(name_prefix_sg, elem.upper()))
725+
btn.set_property("tooltip-text", _("Press to home {0} {1}").format(name_prefix_sg, elem))
726726
btn.connect("clicked", self._on_btn_home_clicked)
727727

728728
self.widgets.hbtb_ref.pack_start(btn,True,True,0)

0 commit comments

Comments
 (0)