From ea96658a73512735e1f7bb8d5a9b95793490ac44 Mon Sep 17 00:00:00 2001 From: thomasv Date: Fri, 3 Feb 2012 15:57:45 +0100 Subject: [PATCH] do not act during focus --- client/gui.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/gui.py b/client/gui.py index a619370f..53e7a0f5 100644 --- a/client/gui.py +++ b/client/gui.py @@ -585,6 +585,8 @@ class BitcoinGUI: old_r = '' while True: time.sleep(0.5) + if self.payto_entry.is_focus(): + continue r = self.payto_entry.get_text() if r != old_r: old_r = r