diff options
author | Johns <johns98@gmx.net> | 2011-12-17 19:25:08 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2011-12-17 19:25:08 +0100 |
commit | 33460f1370b24bae464201e08bbc7bea26f98129 (patch) | |
tree | ba8aaa90a23a6918b36119f150f70d6e8cfc6dc2 /softhddevice.cpp | |
parent | 5ec46e94b4d54d29ac3cf8c38b3e8a14ee52c056 (diff) | |
download | vdr-plugin-softhddevice-33460f1370b24bae464201e08bbc7bea26f98129.tar.gz vdr-plugin-softhddevice-33460f1370b24bae464201e08bbc7bea26f98129.tar.bz2 |
Store config values, when menu leaves.
Diffstat (limited to 'softhddevice.cpp')
-rw-r--r-- | softhddevice.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp index 68585c7..260cc5f 100644 --- a/softhddevice.cpp +++ b/softhddevice.cpp @@ -293,9 +293,11 @@ cMenuSetupSoft::cMenuSetupSoft(void) */ void cMenuSetupSoft::Store(void) { - SetupStore("MakePrimary", MakePrimary); - SetupStore("Deinterlace", Deinterlace); - SetupStore("Scaling", Scaling); + SetupStore("MakePrimary", ConfigMakePrimary = MakePrimary); + SetupStore("Deinterlace", ConfigVideoDeinterlace = Deinterlace); + VideoSetDeinterlace(ConfigVideoDeinterlace); + SetupStore("Scaling", ConfigVideoScaling = Scaling); + VideoSetScaling(ConfigVideoScaling); } ////////////////////////////////////////////////////////////////////////////// |