Skip to content

Commit

Permalink
fix: abbreviations not showing in tool editor
Browse files Browse the repository at this point in the history
  • Loading branch information
knipknap committed Aug 26, 2023
1 parent 15e058a commit ec29e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion btl/ui/toolproperties.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def __init__ (self, tool, pocket=None, parent=None):
def _add_property(self, param, abbreviation=None):
setter = partial(self.tool.shape.set_param, param.name)
widget = self._get_widget_from_param(param, setter)
self._add_property_from_widget(widget, param.label, abbreviation)
self._add_property_from_widget(widget, param.label, param.v, abbreviation)

class ToolAttributes(PropertyWidget):
def __init__ (self, tool, parent=None):
Expand Down

0 comments on commit ec29e30

Please sign in to comment.