Skip to content

Instantly share code, notes, and snippets.

@stsdc
Created April 4, 2019 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stsdc/45e70d8684a5a716a8d319208bbdf255 to your computer and use it in GitHub Desktop.
Save stsdc/45e70d8684a5a716a8d319208bbdf255 to your computer and use it in GitHub Desktop.
GTK3 Scroll to bottom
def __treeview_scroll_to_bottom( self, treeview, event, data=None ):
adj = treeview.get_vadjustment()
adj.set_value(adj.get_upper() - adj.get_page_size())
self.__activate_last_row(treeview)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment