summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Blum2010-01-23 11:53:14 -0800
committerJosh Blum2010-01-23 11:53:14 -0800
commitfcf9efa7b711953fae5a1b177d405ed52f2957cb (patch)
tree840be4c250ae97600b60b0b05cd110360a2f1272
parent18578e234cf0566ed6196f6dff3920a12a3e2479 (diff)
downloadgnuradio-fcf9efa7b711953fae5a1b177d405ed52f2957cb.tar.gz
gnuradio-fcf9efa7b711953fae5a1b177d405ed52f2957cb.tar.bz2
gnuradio-fcf9efa7b711953fae5a1b177d405ed52f2957cb.zip
grc bug fix from Dimitris Symeonidis
-rw-r--r--grc/python/Param.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/Param.py b/grc/python/Param.py
index febb112ad..e04bc8fcb 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