diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-04-04 10:44:19 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-04-04 10:44:19 -0400 |
commit | b7175d5dcfa22c4fd1eef7a40889293cb483ec97 (patch) | |
tree | 17a1813c39572f93f3d20792cf9153f3f1ea3e9b /grc/gui/BlockTreeWindow.py | |
parent | e6b8806be73f8da5a5cbfb690d01b47de03eab74 (diff) | |
parent | ed944b382a215d3020abe7ab9aafcbcbd16e8400 (diff) |
Merge branch 'master' into next
Diffstat (limited to 'grc/gui/BlockTreeWindow.py')
-rw-r--r-- | grc/gui/BlockTreeWindow.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/grc/gui/BlockTreeWindow.py b/grc/gui/BlockTreeWindow.py index e53b7d618e..28867dce7c 100644 --- a/grc/gui/BlockTreeWindow.py +++ b/grc/gui/BlockTreeWindow.py @@ -72,6 +72,8 @@ class BlockTreeWindow(gtk.VBox): #try to enable the tooltips (available in pygtk 2.12 and above) try: self.treeview.set_tooltip_column(DOC_INDEX) except: pass + #setup sort order + column.set_sort_column_id(0) #setup drag and drop self.treeview.enable_model_drag_source(gtk.gdk.BUTTON1_MASK, DND_TARGETS, gtk.gdk.ACTION_COPY) self.treeview.connect('drag-data-get', self._handle_drag_get_data) |