Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 78dfb9a0 authored by Ricardo Cerqueira's avatar Ricardo Cerqueira
Browse files

Fix gr_text() syntax until minui gets updated

Change-Id: Ie6d72013944d7ce6d2c0a244862b464e513fa389
parent 7fd7b622
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -648,7 +648,7 @@ static int draw_text(const char *str, int x, int y)
        x = (gr_fb_width() - str_len_px) / 2;
    if (y < 0)
        y = (gr_fb_height() - char_height) / 2;
    gr_text(x, y, str, 0);
    gr_text(x, y, str/*, 0*/);

    return y + char_height;
}