allowing numpad keys as inpyt
This commit is contained in:
		
							parent
							
								
									76d0540381
								
							
						
					
					
						commit
						36750fa19b
					
				@ -216,6 +216,13 @@ kpress(XKeyEvent * e) {
 | 
			
		||||
	len = strlen(text);
 | 
			
		||||
	buf[0] = 0;
 | 
			
		||||
	num = XLookupString(e, buf, sizeof buf, &ksym, 0);
 | 
			
		||||
	if(IsKeypadKey(ksym)) { 
 | 
			
		||||
		if(ksym == XK_KP_Enter) {
 | 
			
		||||
			ksym = XK_Return;
 | 
			
		||||
		} else if(ksym >= XK_KP_0 && ksym <= XK_KP_9) {
 | 
			
		||||
			ksym = (ksym - XK_KP_0) + XK_0;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
 | 
			
		||||
			|| IsMiscFunctionKey(ksym) || IsPFKey(ksym)
 | 
			
		||||
			|| IsPrivateKeypadKey(ksym))
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user