From d7e2a460701b6e7b76cfc4e753899e286c7960b4 Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 19 Dec 2014 22:06:11 +0100 Subject: Remove an useless input method which was needed with threads --- src/windows/input_placeholders.py | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/windows') diff --git a/src/windows/input_placeholders.py b/src/windows/input_placeholders.py index 8bcf1524..4a6c6d72 100644 --- a/src/windows/input_placeholders.py +++ b/src/windows/input_placeholders.py @@ -69,17 +69,6 @@ class YesNoInput(Win): if key.lower() in self.key_func: self.key_func[key]() - def prompt(self): - """Monopolizes the input while waiting for a recognized keypress""" - def cb(key): - if key in self.key_func: - self.key_func[key]() - if self.value is None: - # We didn’t finish with this prompt, continue monopolizing - # it again until value is set - keyboard.continuation_keys_callback = cb - keyboard.continuation_keys_callback = cb - def on_delete(self): return -- cgit v1.2.3