From: Andreas Oberritter Date: Mon, 3 Nov 2008 15:57:21 +0000 (+0100) Subject: Don't block key '5' on keyboard. X-Git-Tag: 2.6.0~646 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/628794221fd59be381e462fe5fff9fdaae921352 Don't block key '5' on keyboard. '5' should never be blocked because it is essential for many functions. Also it is unclear why both 0x35 and 0x7E codes are supposed to be generated by 'mute'. Until this is resolved, unblocking '5' is the best solution from a user's POV. --- diff --git a/lib/driver/rcconsole.cpp b/lib/driver/rcconsole.cpp index 05fbec1d..bcce5601 100644 --- a/lib/driver/rcconsole.cpp +++ b/lib/driver/rcconsole.cpp @@ -70,7 +70,6 @@ void eRCConsoleDriver::keyPressed(int) code = -1; else switch(code) { - case 0x35: // mute case 0x7E: // mute, einfg, entf case 0x7F: // backspace code = -1;