Tor Erik Sønvisen wrote: > Hi > > I create a canvas that is to big for the default window-size, so it gets cut > to fit... > How can I increase the window-size to make sure the canvas fits? > > regards tores
root=Tk()
root.minsize(300,300)
root.geometry("500x500")
will limit the window to be at least 300x300, and set it straight away
to 500x500.
Iain
--
http://mail.python.org/mailman/listinfo/python-list
