Making a tkinter scrollbar wider
问题 I'm coding in Python 2.7/tkinter in Windows and am putting a scrollbar on a listbar, which I can do easily enough (thanks effbot.org). However, I also want to make the scrollbar wider - it will be used on a touchscreen so the easier it is to select it, the better. I figured the width attribute would make it wider, but all it does is create some blank space. What am I doing wrong here? Code: from Tkinter import * top = Tk() scrollbar = Scrollbar(top, width=100) scrollbar.pack(side=RIGHT, fill