mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Update window title when it changes
This commit is contained in:
		
							parent
							
								
									7878de5ccc
								
							
						
					
					
						commit
						6fa6c27f3d
					
				
					 1 changed files with 18 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -157,11 +157,13 @@ static void render_with_title_bar(swayc_t *view, cairo_t *cr, struct border_colo
 | 
			
		|||
	render_sharp_line(cr, colors->border, 0, 0, tb->size.w, 1);
 | 
			
		||||
 | 
			
		||||
	// text
 | 
			
		||||
	int width, height;
 | 
			
		||||
	get_text_size(cr, config->font, &width, &height, "%s", view->name);
 | 
			
		||||
	cairo_move_to(cr, view->border_thickness, 2);
 | 
			
		||||
	cairo_set_source_u32(cr, colors->text);
 | 
			
		||||
	pango_printf(cr, config->font, "%s", view->name);
 | 
			
		||||
	if (view->name) {
 | 
			
		||||
		int width, height;
 | 
			
		||||
		get_text_size(cr, config->font, &width, &height, "%s", view->name);
 | 
			
		||||
		cairo_move_to(cr, view->border_thickness, 2);
 | 
			
		||||
		cairo_set_source_u32(cr, colors->text);
 | 
			
		||||
		pango_printf(cr, config->font, "%s", view->name);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// header bottom line
 | 
			
		||||
	render_sharp_line(cr, colors->border,
 | 
			
		||||
| 
						 | 
				
			
			@ -247,6 +249,17 @@ void render_view_borders(wlc_handle view) {
 | 
			
		|||
		return;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (c->border_type == B_NORMAL) {
 | 
			
		||||
		// update window title
 | 
			
		||||
		const char *new_name = wlc_view_get_title(view);
 | 
			
		||||
 | 
			
		||||
		if (new_name && strcmp(c->name, new_name) != 0) {
 | 
			
		||||
			free(c->name);
 | 
			
		||||
			c->name = strdup(new_name);
 | 
			
		||||
			update_view_border(c);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (c->border) {
 | 
			
		||||
		wlc_pixels_write(WLC_RGBA8888, &c->border_geometry, c->border);
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue