Re: Tkinter check box behaviour - Windows / Linux discrepancy

2006-11-10 Thread peter
Thank you for those suggestions I've tried it on Windows and it seems fine (with the minor change to command=self.chkTest_click). I'm currently at work, with no access to Linux, so can't test it there until this evening. Muchas gracias! -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter check box behaviour - Windows / Linux discrepancy

2006-11-10 Thread peter
Thank you for those suggestions I've tried it on Windows and it seems fine (with the minor change to command=self.chkTest_click). I'm currently at work, with no access to Linux, so can't test it there until this evening. Muchas gracias! -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter check box behaviour - Windows / Linux discrepancy

2006-11-09 Thread jim-on-linux
Peter, You already have an answer to you question but if you want to fancy up your program you could replace; self.chkTest.bind('', self.chkTest_click) > with > self.chkTest.bind('',self.chkTest_click0) or some other acceptable key from the keyboard > def chkTest_click0(self,event):

Re: Tkinter check box behaviour - Windows / Linux discrepancy

2006-11-09 Thread Gabriel Genellina
At Thursday 9/11/2006 20:28, peter wrote: I've come across a weird difference between the behaviour of the Tkinter checkbox in Windows and Linux. The issue became apparent in some code I wrote to display an image in a fixed size canvas widget. If a checkbox was set then the image should be shru

Tkinter check box behaviour - Windows / Linux discrepancy

2006-11-09 Thread peter
I've come across a weird difference between the behaviour of the Tkinter checkbox in Windows and Linux. The issue became apparent in some code I wrote to display an image in a fixed size canvas widget. If a checkbox was set then the image should be shrunk as necessary to fit the canvas while if cl