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/application.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'client/application.cpp') diff --git a/client/application.cpp b/client/application.cpp index 943fb3b7..8345f390 100644 --- a/client/application.cpp +++ b/client/application.cpp @@ -907,7 +907,12 @@ void Application::on_key_up(RedKey key) } do_on_key_up(key); - } +} + +void Application::on_char(uint32_t ch) +{ + _key_handler->on_char(ch); +} void Application::on_deactivate_screen(RedScreen* screen) { -- cgit