Codebase list xapp / 7f1330f
mate applet: Use markup for tooltips, and update test script to reflect this as well. Michael Webster 3 years ago
2 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
8989 flags = GObject.BindingFlags.DEFAULT | GObject.BindingFlags.SYNC_CREATE
9090
9191 self.proxy.bind_property("label", self.label, "label", flags)
92 self.proxy.bind_property("tooltip-text", self, "tooltip-text", flags)
92 self.proxy.bind_property("tooltip-text", self, "tooltip-markup", flags)
9393 self.proxy.bind_property("visible", self, "visible", flags)
9494
9595 self.proxy.connect("notify::icon-name", self._on_icon_name_changed)
3333 self.show_all()
3434
3535 self.proxy.bind_property("label", self.label, "label", flags)
36 self.proxy.bind_property("tooltip-text", self, "tooltip-text", flags)
36 self.proxy.bind_property("tooltip-text", self, "tooltip-markup", flags)
3737 self.proxy.bind_property("visible", self, "visible", flags)
3838
3939 self.proxy.connect("notify::icon-name", self.on_icon_name_changed)