From fcf9efa7b711953fae5a1b177d405ed52f2957cb Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sat, 23 Jan 2010 11:53:14 -0800 Subject: [PATCH] grc bug fix from Dimitris Symeonidis --- grc/python/Param.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grc/python/Param.py b/grc/python/Param.py index febb112a..e04bc8fc 100644 --- a/grc/python/Param.py +++ b/grc/python/Param.py @@ -65,7 +65,7 @@ class FileParam(EntryParam): file_dialog.set_local_only(True) if gtk.RESPONSE_OK == file_dialog.run(): #run the dialog file_path = file_dialog.get_filename() #get the file path - self.entry.set_text(file_path) + self._input.set_text(file_path) self._handle_changed() file_dialog.destroy() #destroy the dialog -- 2.30.2