1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-28 07:58:22 +01:00

Merge pull request #928 from wasamasa/bugfix-swaylock-font

Explicitly set cairo font to avoid wonky fallback
This commit is contained in:
Drew DeVault 2016-10-05 16:21:35 -04:00 committed by GitHub
commit 0fe2386014

View file

@ -627,6 +627,7 @@ void render(struct render_data *render_data) {
// Draw a message
char *text = NULL;
cairo_set_source_rgb(window->cairo, 0, 0, 0);
cairo_select_font_face(window->cairo, "sans-serif", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size(window->cairo, ARC_RADIUS/3.0f);
switch (render_data->auth_state) {
case AUTH_STATE_VALIDATING: