diff options
author | rbuj <[email protected]> | 2020-02-09 06:45:20 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-02-24 21:51:49 +0100 |
commit | b7b25cce2f8abf7a7e2c86a18bb8080dc658aaa3 (patch) | |
tree | 563714cf0c1dc6f0cb9daba8264b7536082ccf9b | |
parent | 29438c1a7bc0468d742d780272fc74b072282417 (diff) | |
download | libmatekbd-b7b25cce2f8abf7a7e2c86a18bb8080dc658aaa3.tar.bz2 libmatekbd-b7b25cce2f8abf7a7e2c86a18bb8080dc658aaa3.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 { |