Almost forgot, here's the code sample:
#!/usr/bin/env python
import sys, os, Tkinter, types, tkFont, Pmw
def makeResizable(widget):
for i in range(0, widget.grid_size()[0]):
widget.columnconfigure(i, weight=1)
for i in range(0, widget.grid_size()[1]):
widget.rowconfigure(i, weig
I'm trying to use a Pmw.ScrolledFrame which contains a
PanedWidget. But I can't get the PanedWidget to expand to fill the
interior frame. It expands fine if I just grid it into the toplevel
window; and when I tried gridding DIFFERENT widgets into the
ScrolledFrame, they expanded just fine. So b