Ellipsize titles that are too large in the bar

When titles were very large they would overlap the status line.
Ellipsize the title to get it to fit.
This commit is contained in:
Pedro Côrte-Real 2019-08-17 20:59:07 +01:00
parent 8a019a83c9
commit fc19355327
3 changed files with 38 additions and 8 deletions

View file

@ -19,5 +19,7 @@ void get_text_size(cairo_t *cairo, const char *font, int *width, int *height,
int *baseline, double scale, bool markup, const char *fmt, ...);
void pango_printf(cairo_t *cairo, const char *font,
double scale, bool markup, const char *fmt, ...);
void pango_printf_ellipsized(cairo_t *cairo, const char *font,
double scale, bool markup, int max_width, const char *fmt, ...);
#endif