From 3fb876217316bb8ac9a59fffc75bb3c523ae1704 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Mon, 14 Sep 2009 22:37:55 -0700 Subject: [PATCH] fixed issue where entry boxes lost focus (mishandling of hide changing) --- grc/gui/PropsDialog.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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): -- 2.30.2