Made remote changes adhere to code style
This commit is contained in:
		
							parent
							
								
									c330b55de4
								
							
						
					
					
						commit
						5b6467913c
					
				
							
								
								
									
										16
									
								
								thumbs.c
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								thumbs.c
									
									
									
									
									
								
							| @ -390,27 +390,29 @@ void tns_highlight(tns_t *tns, int n, bool hl) { | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| bool tns_move_selection(tns_t *tns, direction_t dir, int count) { | ||||
| 	int old; | ||||
|     int c = (count > 0 ? count : 1); | ||||
| bool tns_move_selection(tns_t *tns, direction_t dir, int cnt) { | ||||
| 	int old, max; | ||||
| 
 | ||||
| 	if (tns == NULL || tns->thumbs == NULL) | ||||
| 		return false; | ||||
| 
 | ||||
| 	old = tns->sel; | ||||
| 	cnt = cnt > 1 ? cnt : 1; | ||||
| 
 | ||||
| 	switch (dir) { | ||||
| 		case DIR_UP: | ||||
|             tns->sel = MAX(tns->sel - c * tns->cols, tns->sel % tns->cols); | ||||
| 			tns->sel = MAX(tns->sel - cnt * tns->cols, tns->sel % tns->cols); | ||||
| 			break; | ||||
| 		case DIR_DOWN: | ||||
|             tns->sel = MIN(tns->sel + c * tns->cols, tns->cols * ((tns->cnt - 1) / tns->cols) + MIN((tns->cnt - 1) % tns->cols, tns->sel % tns->cols)); | ||||
| 			max = tns->cols * ((tns->cnt - 1) / tns->cols) + | ||||
| 			      MIN((tns->cnt - 1) % tns->cols, tns->sel % tns->cols); | ||||
| 			tns->sel = MIN(tns->sel + cnt * tns->cols, max); | ||||
| 			break; | ||||
| 		case DIR_LEFT: | ||||
|             tns->sel = MAX(tns->sel - c, 0); | ||||
| 			tns->sel = MAX(tns->sel - cnt, 0); | ||||
| 			break; | ||||
| 		case DIR_RIGHT: | ||||
| 			tns->sel = MIN(tns->sel + c, tns->cnt - 1); | ||||
| 			tns->sel = MIN(tns->sel + cnt, tns->cnt - 1); | ||||
| 			break; | ||||
| 	} | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Bert Münnich
						Bert Münnich