I want to change the canvas size after I have added some widgets to it
Example:
from Tkinter import *
master = Tk()
w = Canvas(master, width=100, height=100)
w.config(bg='white')
w.create_oval(90,90,110,110, width=0, fill = "ivory3")
w = Canvas(master, width=200, height=200)
w.pack()
mainloop()
But it seem that when I re-declare the canvas size, the objects get removed. Is it possible to update the canvas after I have created some objects on it?