mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 19:16:51 +02:00
Fix bug: learing x11 remote keys fails.
This commit is contained in:
parent
590bae406a
commit
a45b9a3abe
@ -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
|
||||
Date:
|
||||
Date: Tue Jan 14 14:59:44 CET 2014
|
||||
|
||||
Fix alternative OSD support with VDPAU bitmap surfaces.
|
||||
Add support for umlauts in input fields.
|
||||
Fix compile error with VDR 2.1.3.
|
||||
Fix bug: memory leak.
|
||||
PIP close clears the last used PIP channel.
|
||||
|
@ -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);
|
||||
if (key[1]) { // no single character
|
||||
if (!csoft->Put(key, repeat, release) && letter) {
|
||||
if (!csoft->Put(key, repeat, release) && letter
|
||||
&& !cRemote::IsLearning()) {
|
||||
cCharSetConv conv;
|
||||
unsigned code;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user