Closed nalabrie closed 4 years ago
Creating a tk.Toplevel (I named it "top") and changing the minsize to something (I used 640x480) will result in the Python code generator to generate the command topminsize(640, 480) rather than top.minsize(640, 480).
tk.Toplevel
minsize
topminsize(640, 480)
top.minsize(640, 480)
Hello Nicky, thanks for trying pygubu and for the bug report. I will fix it ASAP
Regards! Alejandro a.
Creating a
tk.Toplevel
(I named it "top") and changing theminsize
to something (I used 640x480) will result in the Python code generator to generate the commandtopminsize(640, 480)
rather thantop.minsize(640, 480)
.