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',
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.