commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] [gnuradio] 04/09: grc: fix exception when hitting Ente


From: git
Subject: [Commit-gnuradio] [gnuradio] 04/09: grc: fix exception when hitting Enter on a category row in the block library
Date: Mon, 6 Jul 2015 23:36:59 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a commit to branch maint
in repository gnuradio.

commit bd42a6c89e9eba33a48b0a23b4980c743901fc80
Author: Sebastian Koslowski <address@hidden>
Date:   Thu Jul 2 10:46:10 2015 +0200

    grc: fix exception when hitting Enter on a category row in the block library
---
 grc/gui/BlockTreeWindow.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/grc/gui/BlockTreeWindow.py b/grc/gui/BlockTreeWindow.py
index 76eebdb..631272b 100644
--- a/grc/gui/BlockTreeWindow.py
+++ b/grc/gui/BlockTreeWindow.py
@@ -170,7 +170,7 @@ class BlockTreeWindow(gtk.VBox):
     def _expand_category(self):
         treestore, iter = self.treeview.get_selection().get_selected()
         if iter and treestore.iter_has_child(iter):
-            path = self.treestore.get_path(iter)
+            path = treestore.get_path(iter)
             self.treeview.expand_to_path(path)
 
     ############################################################



reply via email to

[Prev in Thread] Current Thread [Next in Thread]