It seems that ttk's scrollbar's thumb automatically fills up the whole trough when elements can fit within the view-able area..
Even after I add more elements such that the treeview extends past the view-able area, the scrollbar's thumb still doesn't resize. I've tried updating tk itself but it doesn't seem to work.
self.rmv_tree = ttk.Treeview(self.rmv_frame,height=2, columns=self.tree_columns)
self.rmv_scrollbar = ttk.Scrollbar(self.rmv_frame, orient=tk.VERTICAL,command=self.rmv_tree.yview)
self.rmv_scrollbar.pack(side='right',fill='y')
Some google seems to point this out as a unique problem on windows. Any ideas?