Jump to content


Beeker

Member Since 10 Jan 2009
Offline Last Active Yesterday, 22:36
-----

Posts I've Made

In Topic: LCD4linux - cannot change settings with button "Right"

12 December 2024 - 08:46

Thanks for fhat. :)

 

Is the REWIND / FORWARD navigation related?

 

With FORWARD you get to the last option of the selected list element. That's fine.

You would expect REWIND doing the opposite. But it jums to first element in the listbox instead...

 

Removing KEY_REWIND from NavigationActions addresses the issue.

diff --git a/data/keymap.xml b/data/keymap.xml
index 9183e0194..fd55710ad 100644
--- a/data/keymap.xml
+++ b/data/keymap.xml
@@ -41,7 +41,6 @@
        </map>
 
        <map context="NavigationActions">
-               <key id="KEY_REWIND" mapto="top" flags="m" />
                <key id="KEY_CHANNELUP" mapto="pageUp" flags="mr" />
                <key id="KEY_UP" mapto="up" flags="mr" />
                <key id="KEY_REWIND" mapto="first" flags="m" />

File in:

/usr/share/enigma2/

In Topic: LCD4linux - cannot change settings with button "Right"

7 December 2024 - 16:20

Test plugin to be ensure tere are no side-effects(right key is broken in other screens).

When no issues been reported after some days, I'll push fix to git repo.


In Topic: LCD4linux - cannot change settings with button "Right"

7 December 2024 - 15:54

Fix for now (might break other things).

diff --git a/lcd4linux/src/plugin.py b/lcd4linux/src/plugin.py
index be7dc49..743ded2 100644
--- a/lcd4linux/src/plugin.py
+++ b/lcd4linux/src/plugin.py
@@ -5495,7 +5495,7 @@ class LCDdisplayConfig(ConfigListScreen, Screen):
                        "menu": self.SetupMenu,
                        "displayHelp": self.Exchange,
                        "ok": self.keyOK,
-                       "seekFwd": self.NextScreenKey,
+                       "keyRight": self.NextScreenKey,
                        "info": self.ResetInfos
                }, -1)
                self.mode = _("On")

Upload file to

/usr/lib/enigma2/python/Plugins/Extensions/LCD4linux/

And restart enigma2.

Delete file after restart.

 


In Topic: DVB subtitles support in eServiceMP3/GStreamer

29 October 2024 - 12:09

Thanks.


In Topic: DVB subtitles support in eServiceMP3/GStreamer

29 October 2024 - 09:31

Yes that works.

Thanks.

 

I'll create PR for Shoutcast.