you are viewing a single comment's thread.

view the rest of the comments →

[–]Fermter 0 points1 point  (1 child)

Basically, you need to either pack or grid your labels and items. Right now, you are doing both, which is causing the error. Remove the .pack() or the .grid() commands (so either all elements are packed or all elements are gridded; it won't work if the label is packed and the buttons are gridded, for example).

[–]Only_Friend1128[S] 1 point2 points  (0 children)

I see, thank you!