I’m using PWM ScrolledFrame and I’d like to make its size smaller than the default size. I don’t want to use the fixed size (the usehullsize=1 option).
Here is what I tried:
import Tkinter
import Pmw
root = Tkinter.Tk()
Pmw.initialise(root)
sf = ScrolledFrame(root)
sf.interior().configure(height=50, width=50, bg='yellow')
sf.pack()
root.mainloop()
But it results in this:

The clipper frame is obviously unaffected by the configured size of the interior frame. Can I access the clipper frame somehow to configure its size as well?
You should include the following line after
sf = ScrolledFrame(root):A complete example:
with the result: