diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-01-12 20:18:34 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-01-12 20:18:34 +0100 |
commit | 28b2dbcc84ccb553bd02ea8fad2947f0a3effd95 (patch) | |
tree | 41cafe5f23d08c83b0f4acf649f8af2a46f41e6c /src/windows.py | |
parent | 6d4e5c069ec1a953f01c1abacc398a05c5a1485d (diff) | |
download | poezio-28b2dbcc84ccb553bd02ea8fad2947f0a3effd95.tar.gz poezio-28b2dbcc84ccb553bd02ea8fad2947f0a3effd95.tar.bz2 poezio-28b2dbcc84ccb553bd02ea8fad2947f0a3effd95.tar.xz poezio-28b2dbcc84ccb553bd02ea8fad2947f0a3effd95.zip |
Fix InfoTab
Diffstat (limited to 'src/windows.py')
-rw-r--r-- | src/windows.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/windows.py b/src/windows.py index b14bb93f..d856b31c 100644 --- a/src/windows.py +++ b/src/windows.py @@ -1000,6 +1000,11 @@ class Input(Win): self.line_pos = 0 self.rewrite_text() + def key_enter(self): + txt = self.get_text() + self.clear_text() + return txt + class MessageInput(Input): """ The input featuring history and that is being used in |