aboutsummaryrefslogtreecommitdiffstats
path: root/swaynag/render.c
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2021-09-13 14:07:27 +0200
committerLibravatar Kenny Levinsen <kl@kl.wtf>2021-09-13 14:22:51 +0200
commit3f7a04df22b304f10eede8cea2f0d2ceae659069 (patch)
treec2be58823b6695969bd2aa5d5b9682c55e7969e7 /swaynag/render.c
parentreadme: link to gamja for IRC (diff)
downloadsway-3f7a04df22b304f10eede8cea2f0d2ceae659069.tar.gz
sway-3f7a04df22b304f10eede8cea2f0d2ceae659069.tar.zst
sway-3f7a04df22b304f10eede8cea2f0d2ceae659069.zip
Rename pango_printf to render_text
This avoids using the pango_ prefix, reserved for functions coming from the Pango library.
Diffstat (limited to 'swaynag/render.c')
-rw-r--r--swaynag/render.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/swaynag/render.c b/swaynag/render.c
index c159294e..d72f42c2 100644
--- a/swaynag/render.c
+++ b/swaynag/render.c
@@ -22,7 +22,7 @@ static uint32_t render_message(cairo_t *cairo, struct swaynag *swaynag) {
22 22
23 cairo_set_source_u32(cairo, swaynag->type->text); 23 cairo_set_source_u32(cairo, swaynag->type->text);
24 cairo_move_to(cairo, padding, (int)(ideal_height - text_height) / 2); 24 cairo_move_to(cairo, padding, (int)(ideal_height - text_height) / 2);
25 pango_printf(cairo, swaynag->type->font, 1, false, 25 render_text(cairo, swaynag->type->font, 1, false,
26 "%s", swaynag->message); 26 "%s", swaynag->message);
27 27
28 return ideal_surface_height; 28 return ideal_surface_height;
@@ -50,7 +50,7 @@ static void render_details_scroll_button(cairo_t *cairo,
50 cairo_set_source_u32(cairo, swaynag->type->button_text); 50 cairo_set_source_u32(cairo, swaynag->type->button_text);
51 cairo_move_to(cairo, button->x + border + padding, 51 cairo_move_to(cairo, button->x + border + padding,
52 button->y + border + (button->height - text_height) / 2); 52 button->y + border + (button->height - text_height) / 2);
53 pango_printf(cairo, swaynag->type->font, 1, true, 53 render_text(cairo, swaynag->type->font, 1, true,
54 "%s", button->text); 54 "%s", button->text);
55} 55}
56 56
@@ -201,7 +201,7 @@ static uint32_t render_button(cairo_t *cairo, struct swaynag *swaynag,
201 201
202 cairo_set_source_u32(cairo, swaynag->type->button_text); 202 cairo_set_source_u32(cairo, swaynag->type->button_text);
203 cairo_move_to(cairo, button->x + padding, button->y + padding); 203 cairo_move_to(cairo, button->x + padding, button->y + padding);
204 pango_printf(cairo, swaynag->type->font, 1, true, 204 render_text(cairo, swaynag->type->font, 1, true,
205 "%s", button->text); 205 "%s", button->text);
206 206
207 *x = button->x - border; 207 *x = button->x - border;