diff options
author | rbuj <[email protected]> | 2020-02-09 06:45:20 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-02-24 21:30:32 +0100 |
commit | 5e45fbb3bd25730d2911bc1937bcf4a3f1027bb1 (patch) | |
tree | 96ba7750519f287628e8571a05f36e06371c327c | |
parent | 2408e5ee4ed3fee18bb8b9fa2b5c32b7b140f151 (diff) | |
download | libmatekbd-5e45fbb3bd25730d2911bc1937bcf4a3f1027bb1.tar.bz2 libmatekbd-5e45fbb3bd25730d2911bc1937bcf4a3f1027bb1.tar.xz |
Reduce the font size of the key names on keyboard layout display
-rw-r--r-- | libmatekbd/matekbd-keyboard-drawing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmatekbd/matekbd-keyboard-drawing.c b/libmatekbd/matekbd-keyboard-drawing.c index 52764d0..a39e9b5 100644 --- a/libmatekbd/matekbd-keyboard-drawing.c +++ b/libmatekbd/matekbd-keyboard-drawing.c @@ -631,7 +631,7 @@ set_markup (MatekbdKeyboardDrawingRenderContext * context, gchar *txt) txt = strcmp ("&", txt) ? txt : "&"; if (g_utf8_strlen (txt, -1) > 1) { gchar* buf = - g_strdup_printf ("<span size=\"x-small\">%s</span>", txt); + g_strdup_printf ("<span size=\"xx-small\">%s</span>", txt); pango_layout_set_markup (layout, buf, -1); g_free (buf); } else { |