Eleanor Howick

Results 1 comments of Eleanor Howick

I can move the tooltips to also show on the labels with ```python def setTreeLabelTips(tree): for item in tree.listAllItems(): p = item.param if "tip" in p.opts: item.setToolTip(0, p.opts["tip"]) ``` Which...