mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	code style fixes
This commit is contained in:
		
							parent
							
								
									2dec0d894b
								
							
						
					
					
						commit
						7919ae5e44
					
				
					 1 changed files with 11 additions and 13 deletions
				
			
		| 
						 | 
					@ -31,16 +31,14 @@ static const char *ipc_json_layout_description(enum sway_container_layout l) {
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const char *ipc_json_orientation_description(enum sway_container_layout l) {
 | 
					static const char *ipc_json_orientation_description(enum sway_container_layout l) {
 | 
				
			||||||
	switch (l) {
 | 
						if (l == L_VERT) {
 | 
				
			||||||
	case L_VERT:
 | 
					 | 
				
			||||||
		return "vertical";
 | 
							return "vertical";
 | 
				
			||||||
	case L_HORIZ:
 | 
					 | 
				
			||||||
		return "horizontal";
 | 
					 | 
				
			||||||
	case L_TABBED:
 | 
					 | 
				
			||||||
	case L_STACKED:
 | 
					 | 
				
			||||||
	case L_NONE:
 | 
					 | 
				
			||||||
		break;
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (l == L_HORIZ) {
 | 
				
			||||||
 | 
							return "horizontal";
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return "none";
 | 
						return "none";
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -153,8 +151,8 @@ static void ipc_json_describe_output(struct sway_output *output,
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (parent_box.width != 0 && parent_box.height != 0) {
 | 
						if (parent_box.width != 0 && parent_box.height != 0) {
 | 
				
			||||||
		double percent = ((double)output->width / (double)parent_box.width) 
 | 
							double percent = ((double)output->width / parent_box.width)
 | 
				
			||||||
				* ((double)output->height / (double)parent_box.height);
 | 
									* ((double)output->height / parent_box.height);
 | 
				
			||||||
		json_object_object_add(object, "percent", json_object_new_double(percent));
 | 
							json_object_object_add(object, "percent", json_object_new_double(percent));
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -292,8 +290,8 @@ static void ipc_json_describe_container(struct sway_container *c, json_object *o
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (parent_box.width != 0 && parent_box.height != 0) {
 | 
						if (parent_box.width != 0 && parent_box.height != 0) {
 | 
				
			||||||
		double percent = ((double)c->width / (double)parent_box.width) 
 | 
							double percent = ((double)c->width / parent_box.width)
 | 
				
			||||||
				* ((double)c->height / (double)parent_box.height);
 | 
									* ((double)c->height / parent_box.height);
 | 
				
			||||||
		json_object_object_add(object, "percent", json_object_new_double(percent));
 | 
							json_object_object_add(object, "percent", json_object_new_double(percent));
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue