hi im using tkinter and have a scroll bar that works with my text widget but its so small i dont know why ??
scroll = tkinter.Scrollbar(content,borderwidth=50)
Text = tkinter.Text(content,wrap=CHAR, width=50, height=20)
scroll.config(command=Text.yview)
Text.config(yscrollcommand=scroll.set)
Text.grid(row=2, column=1,columnspan=1, rowspan=3, sticky=(N))
scroll.grid(row=2,column=3)