removed the hardcoded fixed fallback, it is useless in non-Latin1 environments
This commit is contained in:
		
							parent
							
								
									630e7ff26f
								
							
						
					
					
						commit
						a308b7507a
					
				| @ -1,5 +1,5 @@ | ||||
| # dwm version
 | ||||
| VERSION = 2.6 | ||||
| VERSION = 2.7 | ||||
| 
 | ||||
| # Customize below to fit your system
 | ||||
| 
 | ||||
|  | ||||
							
								
								
									
										5
									
								
								draw.c
									
									
									
									
									
								
							
							
						
						
									
										5
									
								
								draw.c
									
									
									
									
									
								
							| @ -197,10 +197,7 @@ setfont(const char *fontstr) { | ||||
| 		if(dc.font.xfont) | ||||
| 			XFreeFont(dpy, dc.font.xfont); | ||||
| 		dc.font.xfont = NULL; | ||||
| 		dc.font.xfont = XLoadQueryFont(dpy, fontstr); | ||||
| 		if (!dc.font.xfont) | ||||
| 			dc.font.xfont = XLoadQueryFont(dpy, "fixed"); | ||||
| 		if (!dc.font.xfont) | ||||
| 		if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))) | ||||
| 			eprint("error, cannot init 'fixed' font\n"); | ||||
| 		dc.font.ascent = dc.font.xfont->ascent; | ||||
| 		dc.font.descent = dc.font.xfont->descent; | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 arg@mig29
						arg@mig29