mirror of
https://github.com/swaywm/sway.git
synced 2026-04-06 07:15:44 -04:00
Merge pull request #936 from thejan2009/pango-numeric-char-ref
parse pango markup in workspace names (and bugfix)
This commit is contained in:
parent
28c0426e85
commit
61097085b0
2 changed files with 6 additions and 4 deletions
|
|
@ -205,7 +205,7 @@ void workspace_button_size(struct window *window, const char *workspace_name, in
|
|||
const char *stripped_name = strip_workspace_name(swaybar.config->strip_workspace_numbers, workspace_name);
|
||||
|
||||
get_text_size(window->cairo, window->font, width, height,
|
||||
window->scale, false, "%s", stripped_name);
|
||||
window->scale, true, "%s", stripped_name);
|
||||
*width += 2 * ws_horizontal_padding;
|
||||
*height += 2 * ws_vertical_padding;
|
||||
}
|
||||
|
|
@ -241,7 +241,7 @@ static void render_workspace_button(struct window *window, struct config *config
|
|||
cairo_set_source_u32(window->cairo, box_colors.text);
|
||||
cairo_move_to(window->cairo, (int)*x + ws_horizontal_padding, margin);
|
||||
pango_printf(window->cairo, window->font, window->scale,
|
||||
false, "%s", stripped_name);
|
||||
true, "%s", stripped_name);
|
||||
|
||||
*x += width + ws_spacing;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue