diff options
Diffstat (limited to 'grc/gui/ParamWidgets.py')
-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 4ab7da6d9a..e5657c288e 100644 --- a/grc/gui/ParamWidgets.py +++ b/grc/gui/ParamWidgets.py @@ -168,7 +168,7 @@ class PythonEditorParam(InputParam): def __init__(self, *args, **kwargs): InputParam.__init__(self, *args, **kwargs) - button = self._button = Gtk.Button('Open in Editor') + button = self._button = Gtk.Button(label='Open in Editor') button.connect('clicked', self.open_editor) self.pack_start(button, True, True, True) |