summaryrefslogtreecommitdiff
path: root/skins.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-06-03 13:21:33 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-06-03 13:21:33 +0200
commit9966e03e2925622557d05d49f6bbf76a382fe9b8 (patch)
tree4d065ad25cff0a267203991edbdf471dfa6ccc8a /skins.c
parenta12a504fad29ce7b9d4bfa7a81aafad07d92fde0 (diff)
downloadvdr-9966e03e2925622557d05d49f6bbf76a382fe9b8.tar.gz
vdr-9966e03e2925622557d05d49f6bbf76a382fe9b8.tar.bz2
Fixed handling tabbed item display in 'skincurses'
Diffstat (limited to 'skins.c')
-rw-r--r--skins.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/skins.c b/skins.c
index 736d7dad..c3c93961 100644
--- a/skins.c
+++ b/skins.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skins.c 1.9 2006/04/09 11:25:30 kls Exp $
+ * $Id: skins.c 1.10 2006/06/03 10:18:07 kls Exp $
*/
#include "skins.h"
@@ -79,7 +79,7 @@ void cSkinDisplayMenu::SetTabs(int Tab1, int Tab2, int Tab3, int Tab4, int Tab5)
tabs[4] = Tab4 ? tabs[3] + Tab4 : 0;
tabs[5] = Tab5 ? tabs[4] + Tab5 : 0;
for (int i = 1; i < MaxTabs; i++)
- tabs[i] *= 12;//XXX average character width of font used for items!!!
+ tabs[i] *= 12;//XXX average character width of font used for items - see also skincurses.c!!!
}
void cSkinDisplayMenu::Scroll(bool Up, bool Page)