Fix bug: learing x11 remote keys fails.

This commit is contained in:
mini73 2014-01-24 11:31:57 +01:00 committed by Johns
parent 590bae406a
commit a45b9a3abe
2 changed files with 9 additions and 3 deletions

View File

@ -1,8 +1,13 @@
User mini73
Date: Fri Jan 24 11:30:49 CET 2014
Fix bug: learing x11 remote keys fails.
Add support for umlauts in input fields.
User johns User johns
Date: Date: Tue Jan 14 14:59:44 CET 2014
Fix alternative OSD support with VDPAU bitmap surfaces. Fix alternative OSD support with VDPAU bitmap surfaces.
Add support for umlauts in input fields.
Fix compile error with VDR 2.1.3. Fix compile error with VDR 2.1.3.
Fix bug: memory leak. Fix bug: memory leak.
PIP close clears the last used PIP channel. PIP close clears the last used PIP channel.

View File

@ -240,7 +240,8 @@ extern "C" void FeedKeyPress(const char *keymap, const char *key, int repeat,
//dsyslog("[softhddev]%s %s, %s, %s\n", __FUNCTION__, keymap, key, letter); //dsyslog("[softhddev]%s %s, %s, %s\n", __FUNCTION__, keymap, key, letter);
if (key[1]) { // no single character if (key[1]) { // no single character
if (!csoft->Put(key, repeat, release) && letter) { if (!csoft->Put(key, repeat, release) && letter
&& !cRemote::IsLearning()) {
cCharSetConv conv; cCharSetConv conv;
unsigned code; unsigned code;