From: Josh Blum Date: Tue, 15 Sep 2009 05:37:55 +0000 (-0700) Subject: fixed issue where entry boxes lost focus (mishandling of hide changing) X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=3fb876217316bb8ac9a59fffc75bb3c523ae1704;p=debian%2Fgnuradio fixed issue where entry boxes lost focus (mishandling of hide changing) --- diff --git a/grc/gui/PropsDialog.py b/grc/gui/PropsDialog.py index e3cd3a06..a7822b22 100644 --- a/grc/gui/PropsDialog.py +++ b/grc/gui/PropsDialog.py @@ -91,6 +91,8 @@ class PropsDialog(gtk.Dialog): """ Have the params in this dialog changed? Ex: Added, removed, type change, hide change... + To the props dialog, the hide setting of 'none' and 'part' are identical. + Therfore, the props dialog only cares if the hide setting is/not 'all'. Make a hash that uniquely represents the params state. @return true if changed """ @@ -99,7 +101,7 @@ class PropsDialog(gtk.Dialog): for param in self._block.get_params(): self._hash ^= hash(param) self._hash ^= hash(param.get_type()) - self._hash ^= hash(param.get_hide()) + self._hash ^= hash(param.get_hide() == 'all') return self._hash != old_hash def _handle_changed(self, *args):