mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	ipc: fix fullscreen deco_rect
This fixes the deco_rect reported by the ipc for fullscreen containers to be all zeroes. Children of the fullscreen container should still have their decorations reported correctly
This commit is contained in:
		
							parent
							
								
									776d8d8d08
								
							
						
					
					
						commit
						7b5429b443
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		| 
						 | 
					@ -352,8 +352,9 @@ static void ipc_json_describe_workspace(struct sway_workspace *workspace,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void get_deco_rect(struct sway_container *c, struct wlr_box *deco_rect) {
 | 
					static void get_deco_rect(struct sway_container *c, struct wlr_box *deco_rect) {
 | 
				
			||||||
	enum sway_container_layout parent_layout = container_parent_layout(c);
 | 
						enum sway_container_layout parent_layout = container_parent_layout(c);
 | 
				
			||||||
	if (parent_layout != L_TABBED && parent_layout != L_STACKED &&
 | 
						if ((parent_layout != L_TABBED && parent_layout != L_STACKED &&
 | 
				
			||||||
			c->current.border != B_NORMAL) {
 | 
								c->current.border != B_NORMAL) ||
 | 
				
			||||||
 | 
								c->fullscreen_mode != FULLSCREEN_NONE) {
 | 
				
			||||||
		deco_rect->x = deco_rect->y = deco_rect->width = deco_rect->height = 0;
 | 
							deco_rect->x = deco_rect->y = deco_rect->width = deco_rect->height = 0;
 | 
				
			||||||
		return;
 | 
							return;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue