Created
April 4, 2019 16:01
-
-
Save stsdc/45e70d8684a5a716a8d319208bbdf255 to your computer and use it in GitHub Desktop.
GTK3 Scroll to bottom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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