From 371423c616a52ac1646c63210bf3729aff37c7c8 Mon Sep 17 00:00:00 2001 From: Victor Kareh Date: Fri, 20 Mar 2026 15:54:21 -0400 Subject: screen: Use larger font for wireframe size popup The wireframe resize/move popup used the "fixed" font, which is 13px and quite small for modern displays. This changes it to "10x20", which is 20px and is included as part of the same Xorg fonts package. --- src/core/screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/core/screen.c b/src/core/screen.c index f6f1c14a..73de3695 100644 --- a/src/core/screen.c +++ b/src/core/screen.c @@ -529,7 +529,7 @@ meta_screen_new (MetaDisplay *display, gc_values.line_width = META_WIREFRAME_XOR_LINE_WIDTH; value_mask |= GCLineWidth; - font_info = XLoadQueryFont (screen->display->xdisplay, "fixed"); + font_info = XLoadQueryFont (screen->display->xdisplay, "10x20"); if (font_info != NULL) { @@ -538,7 +538,7 @@ meta_screen_new (MetaDisplay *display, XFreeFontInfo (NULL, font_info, 1); } else - meta_warning ("xserver doesn't have 'fixed' font.\n"); + meta_warning ("xserver doesn't have '10x20' font.\n"); screen->root_xor_gc = XCreateGC (screen->display->xdisplay, screen->xroot, -- cgit v1.2.1