mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	layout: arrange_windows: Partially fix swaybar irregularties.
This commit is contained in:
		
							parent
							
								
									0ad5059b6f
								
							
						
					
					
						commit
						f0b3ee6d84
					
				
					 1 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
					@ -450,7 +450,7 @@ static void arrange_windows_r(swayc_t *container, double width, double height) {
 | 
				
			||||||
	case C_WORKSPACE:
 | 
						case C_WORKSPACE:
 | 
				
			||||||
		{
 | 
							{
 | 
				
			||||||
			swayc_t *output = swayc_parent_by_type(container, C_OUTPUT);
 | 
								swayc_t *output = swayc_parent_by_type(container, C_OUTPUT);
 | 
				
			||||||
			int width = output->width, height = output->height;
 | 
								width = output->width, height = output->height;
 | 
				
			||||||
			for (i = 0; i < desktop_shell.panels->length; ++i) {
 | 
								for (i = 0; i < desktop_shell.panels->length; ++i) {
 | 
				
			||||||
				struct panel_config *config = desktop_shell.panels->items[i];
 | 
									struct panel_config *config = desktop_shell.panels->items[i];
 | 
				
			||||||
				if (config->output == output->handle) {
 | 
									if (config->output == output->handle) {
 | 
				
			||||||
| 
						 | 
					@ -473,10 +473,10 @@ static void arrange_windows_r(swayc_t *container, double width, double height) {
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			int gap = swayc_gap(container);
 | 
								int gap = swayc_gap(container);
 | 
				
			||||||
			container->x = gap;
 | 
								container->x = x + gap;
 | 
				
			||||||
			container->y = gap;
 | 
								container->y = y + gap;
 | 
				
			||||||
			container->width = width - gap * 2;
 | 
								width = container->width = width - gap * 2;
 | 
				
			||||||
			container->height = height - gap * 2;
 | 
								height = container->height = height - gap * 2;
 | 
				
			||||||
			sway_log(L_DEBUG, "Arranging workspace '%s' at %f, %f", container->name, container->x, container->y);
 | 
								sway_log(L_DEBUG, "Arranging workspace '%s' at %f, %f", container->name, container->x, container->y);
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		 // children are properly handled below
 | 
							 // children are properly handled below
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue