mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	layout cmd: always operate on parent container, like i3Fixes #3724
This commit is contained in:
		
							parent
							
								
									b799a30962
								
							
						
					
					
						commit
						9bbf10bdfc
					
				
					 1 changed files with 2 additions and 4 deletions
				
			
		| 
						 | 
					@ -111,10 +111,8 @@ struct cmd_results *cmd_layout(int argc, char **argv) {
 | 
				
			||||||
				"Unable to change layout of floating windows");
 | 
									"Unable to change layout of floating windows");
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Typically we change the layout of the current container, but if the
 | 
						// Operate on parent container, like i3.
 | 
				
			||||||
	// current container is a view (it usually is) then we'll change the layout
 | 
						if (container) {
 | 
				
			||||||
	// of the parent instead, as it doesn't make sense for views to have layout.
 | 
					 | 
				
			||||||
	if (container && container->view) {
 | 
					 | 
				
			||||||
		container = container->parent;
 | 
							container = container->parent;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue