diff options
Diffstat (limited to 'grc/gui/VariableEditor.py')
-rw-r--r-- | grc/gui/VariableEditor.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/grc/gui/VariableEditor.py b/grc/gui/VariableEditor.py index 484395be8c..e310676420 100644 --- a/grc/gui/VariableEditor.py +++ b/grc/gui/VariableEditor.py @@ -254,7 +254,9 @@ class VariableEditor(Gtk.VBox): elif key == self.ADD_VARIABLE: self.emit('create_new_block', 'variable') elif key == self.OPEN_PROPERTIES: - Actions.BLOCK_PARAM_MODIFY(self._block) + # TODO: This probably isn't working because the action doesn't expect a parameter + #Actions.BLOCK_PARAM_MODIFY() + pass elif key == self.DELETE_BLOCK: self.emit('remove_block', self._block.get_id()) elif key == self.DELETE_CONFIRM: |