diff options
author | Manuel Reimer <manuel.reimer@gmx.de> | 2021-01-18 13:37:20 +0100 |
---|---|---|
committer | Manuel Reimer <manuel.reimer@gmx.de> | 2021-01-18 13:37:20 +0100 |
commit | 518d98f7d4b90be877f85168925c5e9b96e57fca (patch) | |
tree | 3196a0bef1b07713c42967b63cc6cc538b89c47f | |
parent | e5c735808c16bfec9e4f33dac0215f55ac295382 (diff) | |
parent | 621ffedb4ffa3a1d5457984295fa3855cb68ed2a (diff) | |
download | vdr-plugin-graphlcd-518d98f7d4b90be877f85168925c5e9b96e57fca.tar.gz vdr-plugin-graphlcd-518d98f7d4b90be877f85168925c5e9b96e57fca.tar.bz2 |
Merge branch 'FixSetupShowReplayLogo' of https://github.com/pbiering/vdr-plugin-graphlcd into pbiering-FixSetupShowReplayLogo
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | menu.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,9 @@ VDR Plugin 'graphlcd' Revision History ------------------------------------- +2021-01-17 +- Fix name inconsistency between read and write of setup config value "ShowReplayLogo" + 2020-08-19: Version 1.0.2 - Fixed VDR version detection in Makefile @@ -87,7 +87,7 @@ void cGraphLCDMenuSetup::Store() SetupStore("ShowVolume", GraphLCDSetup.ShowVolume = newGraphLCDSetup.ShowVolume); SetupStore("ShowNotRecording", GraphLCDSetup.ShowNotRecording = newGraphLCDSetup.ShowNotRecording); SetupStore("IdentifyReplayType", GraphLCDSetup.IdentifyReplayType = newGraphLCDSetup.IdentifyReplayType); - SetupStore("ReplayLogo", GraphLCDSetup.ShowReplayLogo = newGraphLCDSetup.ShowReplayLogo); + SetupStore("ShowReplayLogo", GraphLCDSetup.ShowReplayLogo = newGraphLCDSetup.ShowReplayLogo); SetupStore("ModifyReplayString", GraphLCDSetup.ModifyReplayString = newGraphLCDSetup.ModifyReplayString); SetupStore("ScrollMode", GraphLCDSetup.ScrollMode = newGraphLCDSetup.ScrollMode); SetupStore("ScrollSpeed", GraphLCDSetup.ScrollSpeed = newGraphLCDSetup.ScrollSpeed); |