grc bug fix from Dimitris Symeonidis
[debian/gnuradio] / grc / python / Param.py
index febb112ad3a1f4404b71574c1b1e5394e440240f..e04bc8fcb587589effbc2bcfef2fc61085bfba69 100644 (file)
@@ -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