Skip to content

Commit

Permalink
Fix name inconsistency between read and write of setup config value "…
Browse files Browse the repository at this point in the history
…ShowReplayLogo"
  • Loading branch information
pbiering committed Jan 17, 2021
1 parent dc0086e commit 621ffed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
VDR Plugin 'graphlcd' Revision History
-------------------------------------

2021-01-17
- Fix name inconsistency between read and write of setup config value "ShowReplayLogo"

2018-11-10: Version 1.0.1
- Improved "trim" function which doesn't cause negative size_type values

Expand Down
2 changes: 1 addition & 1 deletion menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 621ffed

Please sign in to comment.