diff options
author | mi <mi@FreeBSD.org> | 2002-08-01 22:51:27 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2002-08-01 22:51:27 +0800 |
commit | adcb4fe31115ae11d6656045f560412183ef7a55 (patch) | |
tree | 17db2dec764ff2a3bc99398c727ec79e2a8eec50 /print/lyx-devel | |
parent | 4635fd8e40ded3a9a2445baa3d98b5f11a728412 (diff) | |
download | freebsd-ports-gnome-adcb4fe31115ae11d6656045f560412183ef7a55.tar.gz freebsd-ports-gnome-adcb4fe31115ae11d6656045f560412183ef7a55.tar.zst freebsd-ports-gnome-adcb4fe31115ae11d6656045f560412183ef7a55.zip |
Make LyX be more specific, when it can not find the font it wants
and switches to "fixed".
Diffstat (limited to 'print/lyx-devel')
-rw-r--r-- | print/lyx-devel/files/patch-fontwarning | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/print/lyx-devel/files/patch-fontwarning b/print/lyx-devel/files/patch-fontwarning new file mode 100644 index 000000000000..c162db45fae7 --- /dev/null +++ b/print/lyx-devel/files/patch-fontwarning @@ -0,0 +1,9 @@ +Report, which font is missing to aid the user trying to configure things. +--- src/FontLoader.C Thu Mar 21 12:25:07 2002 ++++ src/FontLoader.C Thu Aug 1 10:44:19 2002 +@@ -302,3 +302,4 @@ + } else { +- lyxerr << "Could not get font. Using 'fixed'." << endl; ++ lyxerr << "Could not get font '" << font.c_str() << ++ "'. Using 'fixed'." << endl; + fs = XLoadQueryFont(GUIRunTime::x11Display(), "fixed"); |