Message222301
Hi Terry, I started digging into this deeper and it looks like my tests doesn't tear in Python 2.7. I have tried on Python 3.5 and 3.4 and it tears on those versions.
I also tried the ttk objects, and the widgets also teared when I added frames. Here is the code I tried.
from tkinter import *
from tkinter import ttk
paned = ttk.Panedwindow(orient="horizontal")
left = ttk.Frame(paned)
left.pack(side='left', fill='both', expand=True)
right = ttk.Frame(paned)
right.pack(side='right', fill='both', expand=True)
button = ttk.Button(left,text="lefgt pane")
button.pack( fill='both', expand=True)
button2 = ttk.Button(right, text="right pane")
button2.pack( fill='both', expand=True)
paned.add(left)
paned.add(right)
paned.pack(fill="both",expand=True, pady = (4,1), padx=4)
mainloop() |
|
Date |
User |
Action |
Args |
2014-07-04 18:25:33 | Lita.Cho | set | recipients:
+ Lita.Cho, terry.reedy, jesstess |
2014-07-04 18:25:33 | Lita.Cho | set | messageid: <1404498333.74.0.0400234681141.issue21597@psf.upfronthosting.co.za> |
2014-07-04 18:25:33 | Lita.Cho | link | issue21597 messages |
2014-07-04 18:25:33 | Lita.Cho | create | |
|