Skip to content

Commit c7b417b

Browse files
committed
fixed font manager bug
svn path=/trunk/matplotlib/; revision=387
1 parent dc9dfee commit c7b417b

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
New entries should be added at the top
22

3+
2004-07-09 fixed a sfnt bug exposed if font cache is not built
4+
35
2004-07-09 added default arg None to matplotlib.matlab grid command to
46
toggle current grid state
57

DEVNOTES

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ http://matplotlib.sourceforge.net
2828

2929
0) Turn off all the build flags
3030

31-
0) Run examples/backend_driver.py w/o errors; run the backend specific
31+
0) Testing: remove font cache and test w/ and w/o font cache on some
32+
example script
33+
34+
0) Testing: Run examples/backend_driver.py w/o errors; run the backend specific
3235
demos (object_picker, anim , embedding*). Do an explicity numarray
3336
and python2.2 test.
3437

examples/backend_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def drive(backend):
8989
times = {}
9090
backends = ['PS', 'GD', 'Paint', 'Agg', 'Template']
9191
#backends.extend([ 'GTK', 'WX', 'TkAgg'])
92-
backends = [ 'SVG']
92+
backends = [ 'Agg']
9393
#backends = [ 'Agg', 'PS', 'Template']
9494

9595
for backend in backends:

src/ft2font.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@ FT2Font::set_text(const Py::Tuple & args) {
348348
return Py::Object();
349349
}
350350

351+
351352
char FT2Font::get_glyph__doc__[] =
352353
"get_glyph(num)\n"
353354
"\n"

0 commit comments

Comments
 (0)