mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	Increased the average character estimate for calculating tab positions in skins, to better suit wide fonts
This commit is contained in:
		
							
								
								
									
										4
									
								
								skins.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								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 2.3 2011/08/21 11:21:19 kls Exp $
 | 
			
		||||
 * $Id: skins.c 2.4 2012/02/20 11:47:15 kls Exp $
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include "skins.h"
 | 
			
		||||
@@ -78,7 +78,7 @@ void cSkinDisplayMenu::SetTabs(int Tab1, int Tab2, int Tab3, int Tab4, int Tab5)
 | 
			
		||||
  tabs[3] = Tab3 ? tabs[2] + Tab3 : 0;
 | 
			
		||||
  tabs[4] = Tab4 ? tabs[3] + Tab4 : 0;
 | 
			
		||||
  tabs[5] = Tab5 ? tabs[4] + Tab5 : 0;
 | 
			
		||||
  int AvgCharWidth = Setup.FontOsdSize * 3 / 5; // just an estimate
 | 
			
		||||
  int AvgCharWidth = Setup.FontOsdSize * 4 / 6; // just an estimate
 | 
			
		||||
  for (int i = 1; i < MaxTabs; i++)
 | 
			
		||||
      tabs[i] *= AvgCharWidth;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user