mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Fix moving out of tab/stack when only child
This commit is contained in:
		
							parent
							
								
									536773e3a1
								
							
						
					
					
						commit
						633bee9019
					
				
					 1 changed files with 13 additions and 0 deletions
				
			
		| 
						 | 
					@ -312,6 +312,19 @@ static void workspace_rejigger(struct sway_container *ws,
 | 
				
			||||||
static void move_out_of_tabs_stacks(struct sway_container *container,
 | 
					static void move_out_of_tabs_stacks(struct sway_container *container,
 | 
				
			||||||
		struct sway_container *current, enum movement_direction move_dir,
 | 
							struct sway_container *current, enum movement_direction move_dir,
 | 
				
			||||||
		int offs) {
 | 
							int offs) {
 | 
				
			||||||
 | 
						if (container->parent == current->parent
 | 
				
			||||||
 | 
								&& current->parent->children->length == 1) {
 | 
				
			||||||
 | 
							wlr_log(L_DEBUG, "Changing layout of %zd", current->parent->id);
 | 
				
			||||||
 | 
							current->parent->layout = move_dir =
 | 
				
			||||||
 | 
								MOVE_LEFT || move_dir == MOVE_RIGHT ? L_HORIZ : L_VERT;
 | 
				
			||||||
 | 
							if (current->parent->type == C_WORKSPACE) {
 | 
				
			||||||
 | 
								arrange_workspace(current->parent);
 | 
				
			||||||
 | 
							} else {
 | 
				
			||||||
 | 
								arrange_children_of(current->parent);
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							return;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	wlr_log(L_DEBUG, "Moving out of tab/stack into a split");
 | 
						wlr_log(L_DEBUG, "Moving out of tab/stack into a split");
 | 
				
			||||||
	bool is_workspace = current->parent->type == C_WORKSPACE;
 | 
						bool is_workspace = current->parent->type == C_WORKSPACE;
 | 
				
			||||||
	struct sway_container *old_parent = current->parent->parent;
 | 
						struct sway_container *old_parent = current->parent->parent;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue