Since I can't horizontally scroll Treeview column due to what appears to be Tk/Tkinter limitation, I want to make it sticky so it is attached to the frame.
The issue is that user can manually resize Treeview column which can mess up my interface in a certain way. Is it possible to disable such functionality?
Note the size of the column header.
User can drag mouse to resize column. I want to disable this.
Setting minwidth
to a certain value prevents column from shrinking, but it is still possible to resize it to a larger width. I suppose I can react to changing width and just revert it to original, but there has to be a better way to do it.