commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] [gnuradio] 41/101: grc: gtk3: fix PythonEditorParam wi


From: git
Subject: [Commit-gnuradio] [gnuradio] 41/101: grc: gtk3: fix PythonEditorParam widget
Date: Thu, 16 Mar 2017 14:58:04 +0000 (UTC)

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

jcorgan pushed a commit to branch python3
in repository gnuradio.

commit b75465dad599575bce879df01fb4c515eeeddec5
Author: Sebastian Koslowski <address@hidden>
Date:   Wed Jul 13 13:35:52 2016 +0200

    grc: gtk3: fix PythonEditorParam widget
---
 grc/gui/ParamWidgets.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/grc/gui/ParamWidgets.py b/grc/gui/ParamWidgets.py
index 3ee4c77..0c5728f 100644
--- a/grc/gui/ParamWidgets.py
+++ b/grc/gui/ParamWidgets.py
@@ -170,7 +170,7 @@ class PythonEditorParam(InputParam):
         InputParam.__init__(self, *args, **kwargs)
         button = self._button = Gtk.Button('Open in Editor')
         button.connect('clicked', self.open_editor)
-        self.pack_start(button, True)
+        self.pack_start(button, True, True, True)
 
     def open_editor(self, widget=None):
         self.param.parent_flowgraph.install_external_editor(self.param)



reply via email to

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