I have no idea, but would making the image slightly larger, (perhaps workable programmatically,) work as a work-around?
On Mon, Feb 8, 2010 at 5:38 PM, Nemes Andrei <[email protected]>wrote: > Hi! > I am trying to make a menu that uses small icons as well as text, but when > I open the main menu, the icon in the pull down menu is not correctly > displayed until I hoover over it. Could someone please be so kind to tell me > what's wrong and how can I solve this. Image with error attached (or > viewable at http://img11.imageshack.us/img11/9429/bugft.jpg) > Thank you. > > menu code: > #building icon set > self.info=PhotoImage(file="gui/information.gif") > > #menu init > self.myMenu=Menu(self) > > #help menu > self.menu_help=Menu(self.myMenu, tearoff=0) > self.menu_help.add_command(label="Credits ", command=mda) > self.menu_help.add_command(label="About "+name, image=self.info, > compound="left", command=mda) > self.myMenu.add_cascade(label="Help", menu=self.menu_help) > > #show menu bar > self.config(menu=self.myMenu) > > Kind regards, > Andrei Nemes > > > _______________________________________________ > Tkinter-discuss mailing list > [email protected] > http://mail.python.org/mailman/listinfo/tkinter-discuss > >
_______________________________________________ Tkinter-discuss mailing list [email protected] http://mail.python.org/mailman/listinfo/tkinter-discuss
