Python – Use tkinter to increase the width of the python separator

Use tkinter to increase the width of the python separator… here is a solution to the problem.

Use tkinter to increase the width of the python separator

I’ve been working on a project that uses separators, but I just don’t know how to make them thicker!
Here’s the code I get now:

tkinter.ttk.Separator(master, orient=VERTICAL).grid(column=1, row=1, rowspan=4, sticky='ns')

So how do you make the separator thicker/wider?
Postscript. The code is only a small part of my project

Solution

The ttk separator widget is not designed to be modified in this way. Part of the gist of theme (TTK) widgets is that they follow a common theme and therefore cannot be customized.

You can use an empty frame widget that allows you to set the width, height, border style, color, etc.

Related Problems and Solutions