diff options
-rw-r--r-- | grc/gui/ParamWidgets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/ParamWidgets.py b/grc/gui/ParamWidgets.py index 3ee4c7761d..0c5728feed 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) |