[Tkinter-discuss] Differences on Mac and Windows

2014-02-11 Thread Bhaskar Chaudhary
Hi The following piece of code displays correctly on Windows PC but it displays all messed up in OS X (10.9.1 and others) as shown in attachment below. from Tkinter import * root = Tk() root.geometry('142x280+150+200') root.configure(background='#4D4D4D') mytext = Text(root, background='#101010',

Re: [Tkinter-discuss] Differences on Mac and Windows

2014-02-11 Thread Michael Lange
Hi, On Tue, 11 Feb 2014 14:49:31 +0530 Bhaskar Chaudhary wrote: > Hi > > The following piece of code displays correctly on Windows PC but it > displays all messed up in OS X (10.9.1 and others) as shown in > attachment below. (...) > > Any reasons why it shows the way it does on Mac. > Thanks.