X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=grc%2Fpython%2FParam.py;fp=grc%2Fpython%2FParam.py;h=e04bc8fcb587589effbc2bcfef2fc61085bfba69;hb=fcf9efa7b711953fae5a1b177d405ed52f2957cb;hp=febb112ad3a1f4404b71574c1b1e5394e440240f;hpb=18578e234cf0566ed6196f6dff3920a12a3e2479;p=debian%2Fgnuradio 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