Skip to content

Commit

Permalink
Merge pull request #16 from PrismPipeline/make_port_tooltip_singular_…
Browse files Browse the repository at this point in the history
…type

made port tooltips display a singular type
  • Loading branch information
manuelkoester authored Aug 6, 2023
2 parents ff27a3e + 61963ea commit e5940a6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/QuiltiX/qx_port.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ def get_port_types(self, current=False):
return port_types

def refresh_tool_tip(self):
port_types = self.get_port_types()
ttip = ", ".join(port_types)
ttip = self.get_port_types(current=True)
self.setToolTip(ttip)

def paint(self, painter, option, widget):
Expand Down

0 comments on commit e5940a6

Please sign in to comment.