summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorVictor Kareh <[email protected]>2026-03-20 15:54:21 -0400
committerVictor Kareh <[email protected]>2026-05-27 15:58:46 -0400
commit3183b187ea00e255193720c7c44b0c4ece81a8cf (patch)
treeab19b32b83ccd34bef3c0a7724dfdcd0012423db /src/core
parent7566d327a31715653979d75e62bf4ab1141d695b (diff)
downloadmarco-3183b187ea00e255193720c7c44b0c4ece81a8cf.tar.bz2
marco-3183b187ea00e255193720c7c44b0c4ece81a8cf.tar.xz
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.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/screen.c4
1 files changed, 2 insertions, 2 deletions
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,