Use PANGO_UNDERLINE_SINGLE for rendering shortcuts
The pango docs say to use _LOW for accelerators, but that causes the line to be drawn beneath the ink extents which for us may be outside the area that gets displayed and we end up with no line at all. We also don't want to extend every menu entry with enough space to fit this possible line.
This commit is contained in:
parent
d6797e53b4
commit
396198081e
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ RrFont *RrFontOpen(const RrInstance *inst, const gchar *name, gint size,
|
|||
out->ref = 1;
|
||||
out->font_desc = pango_font_description_new();
|
||||
out->layout = pango_layout_new(inst->pango);
|
||||
out->shortcut_underline = pango_attr_underline_new(PANGO_UNDERLINE_LOW);
|
||||
out->shortcut_underline = pango_attr_underline_new(PANGO_UNDERLINE_SINGLE);
|
||||
out->shortcut_underline->start_index = 0;
|
||||
out->shortcut_underline->end_index = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue