From 6c5966d8ed8ff248ca21900aaf2350aac87f68e4 Mon Sep 17 00:00:00 2001 From: Yaniv Kamay Date: Sat, 21 Nov 2009 19:28:59 +0200 Subject: client: KeyHandler now receive unicode char event in addition to RedKey events --- client/screen.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'client/screen.cpp') diff --git a/client/screen.cpp b/client/screen.cpp index 50905710..39c9dbc5 100644 --- a/client/screen.cpp +++ b/client/screen.cpp @@ -659,6 +659,11 @@ void RedScreen::on_key_release(RedKey key) _owner.on_key_up(key); } +void RedScreen::on_char(uint32_t ch) +{ + _owner.on_char(ch); +} + void RedScreen::on_deactivate() { relase_mouse(); -- cgit