Re: Plasma.ToolTipManager and Plasma.Applet

2010-10-14 Thread Aaron J. Seigo
On Thursday, October 14, 2010, Thomas Olsen wrote: TypeError: ToolTipManager.setContent(): argument 1 has unexpected type 'PyPopupApplet' and the plasmoidviewer crashes. Have I again misunderstood something or should I file a bugreport against the python bindings? it looks bindings related,

Re: Plasma.ToolTipManager and Plasma.Applet

2010-10-14 Thread Luca Beltrame
In data giovedì 14 ottobre 2010 13:17:35, Thomas Olsen ha scritto: Plasma.ToolTipManager.self().setContent(self, data) As far as I can remember, you need to use self.applet instead of self when applying something to the applet. I'm not sure it will work, but worth trying. This should be

Re: Plasma.ToolTipManager and Plasma.Applet

2010-10-14 Thread Luca Beltrame
In data giovedì 14 ottobre 2010 13:17:35, Thomas Olsen ha scritto: Plasma.ToolTipManager.self().setContent(self, data) Extra reply because I think I wasn't clear enough. Instead of the quoted statement, try using: Plasma.ToolTipManager.self().setContent(self.applet, data) I think