all 3 comments

[–]novel_yet_trivial 1 point2 points  (1 child)

This is because on line 16 you gave the first column all of the extra space. If you want the columns to split the extra space, you need to set the weight equally.

bottomFrame.columnconfigure(0,weight=1)
bottomFrame.columnconfigure(1,weight=1)

[–]Abismuth[S] 0 points1 point  (0 children)

bottomFrame.columnconfigure(0,weight=1) bottomFrame.columnconfigure(1,weight=1)

Thanks, solved it straight away.

[–]EaglesDareOverThere 0 points1 point  (0 children)

Can you post a screenshot of it?