summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Smith2008-05-20 19:54:42 +0100
committerBradley Smith2008-05-20 19:54:42 +0100
commit45d70e8d9de6b527c9ae5400d891918c842ed5c3 (patch)
tree075f93b563707969a6d79f93698c33e2004117ae
parentTidy up Xlib/Xpm checks. (diff)
downloadgnurobots-45d70e8d9de6b527c9ae5400d891918c842ed5c3.tar.gz
Change default font to fixed.
Signed-off-by: Bradley Smith <brad@brad-smith.co.uk>
-rw-r--r--ChangeLog5
-rw-r--r--src/userinterface.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f8d6561..f120e8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-20 Bradley Smith <brad@brad-smith.co.uk>
+
+ * src/userinterface.c:
+ Change font to fixed
+
2008-05-19 Bradley Smith <brad@brad-smith.co.uk>
* configure.ac:
diff --git a/src/userinterface.c b/src/userinterface.c
index ca14ee6..b2702e4 100644
--- a/src/userinterface.c
+++ b/src/userinterface.c
@@ -152,7 +152,7 @@ user_interface_constructor (GType type,
XMapWindow (ui->dpy, ui->x_win);
ui->text = XLoadFont (ui->dpy,
- "-*-helvetica-medium-r-*-*-*-120-*-*-*-*-*-*");
+ "-*-fixed-medium-r-*-*-*-120-*-*-*-*-*-*");
values.font = ui->text;
values.foreground = WhitePixel (ui->dpy, DefaultScreen (ui->dpy));