From 90f57792286bcec1502625c0e275c5d573652c5e Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Mon, 5 Mar 2012 10:46:26 +0100 Subject: [PATCH] Made the ST:TNG skin the default in case the user selected skin is not available --- HISTORY | 1 + vdr.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index f269ed17..3f7ca5c7 100644 --- a/HISTORY +++ b/HISTORY @@ -6973,3 +6973,4 @@ Video Disk Recorder Revision History handled for 10 seconds. - Added some missing member initializations in cBitmap. - Improved displaying the play mode in the ST:TNG skin. +- Made the ST:TNG skin the default in case the user selected skin is not available. diff --git a/vdr.c b/vdr.c index f01239aa..47bd1d9b 100644 --- a/vdr.c +++ b/vdr.c @@ -22,7 +22,7 @@ * * The project's page is at http://www.tvdr.de * - * $Id: vdr.c 2.30 2012/02/27 10:59:55 kls Exp $ + * $Id: vdr.c 2.31 2012/03/05 10:44:33 kls Exp $ */ #include @@ -677,8 +677,8 @@ int main(int argc, char *argv[]) // Default skins: - new cSkinClassic; new cSkinSTTNG; + new cSkinClassic; Skins.SetCurrent(Setup.OSDSkin); cThemes::Load(Skins.Current()->Name(), Setup.OSDTheme, Skins.Current()->Theme()); CurrentSkin = Skins.Current();