[issue22026] 2.7.8 ttk Button text display problem

2014-07-22 Thread Les Bothwell
Les Bothwell added the comment: In my example, the import statement can be removed (dammit) -- ___ Python tracker <http://bugs.python.org/issue22026> ___ ___ Pytho

[issue22026] 2.7.8 ttk Button text display problem

2014-07-21 Thread Les Bothwell
New submission from Les Bothwell: My system: Windows 7 64 bit. Python 2.7.8 (32 bit) There's a problem with ttk button label text truncation when using large fonts on 2.7.8. 2.7.6 works Ok. With 2.7.6, increasing the font size in a ttk style makes the button large enough to display the

[issue21665] 2.7.7 ttk widgets not themed

2014-06-05 Thread Les Bothwell
Les Bothwell added the comment: Here's an even simpler example (from book: Modern Tkinter for busy python programmers). from Tkinter import * import ttk root = Tk() ttk.Button(root, text="Hello World!").grid() root.mainloop() I have screenshots of both progs for 2.7.6 and 2.7.

[issue21665] 2.7.7 ttk widgets not themed

2014-06-05 Thread Les Bothwell
Les Bothwell added the comment: The code below shows a "windows themed" button with 2.7.6 but a plain "tkinter" button with 2.7.7. Functionality is Ok both cases. from win32api import GetMonitorInfo, MonitorFromWindow from win32con import MONITOR_DEFAULTTONEAREST from Tki

[issue21665] 2.7.7 ttk widgets not themed

2014-06-04 Thread Les Bothwell
New submission from Les Bothwell: I developed a number of small apps using ttk in 2.7.6. After installing 2.7.7 all the ttk widgets look like standard Tkinter ones. I reverted to 2.7.6 and everything looks Ok again. (I tried reinstalling 2.7.7 again with the same result) Windows 7 X64 using