Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 20a1dad

Browse files
committed
turned off wx extension code by default
svn path=/trunk/matplotlib/; revision=3338
1 parent 5849016 commit 20a1dad

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

CHANGELOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
'text.latex.unicode' rcParam. This requires the ucs and
33
inputenc LaTeX packages. - ADS
44

5-
2007-04-23 Fixed some problems with polar -- dded general polygon
5+
2007-04-23 Fixed some problems with polar -- added general polygon
66
clipping to clip the lines a nd grids to the polar axes.
77
Added support for set_rmax to easily change the maximum
88
radial grid. Added support for polar legend - JDH
99

10-
2007-04-16 Added autofmt_xdate to handle adjusting the bottom and
11-
rotating the tick labels for date plots when the ticks
10+
2007-04-16 Added Figure.autofmt_xdate to handle adjusting the bottom
11+
and rotating the tick labels for date plots when the ticks
1212
often overlap - JDH
1313

1414
2007-04-09 Beginnings of usetex support for pdf backend. -JKS

lib/matplotlib/mpl-data/matplotlibrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#### CONFIGURATION BEGINS HERE
2727
# the default backend; one of GTK GTKAgg GTKCairo FltkAgg QtAgg TkAgg
2828
# Agg Cairo GD GDK Paint PS PDF SVG Template
29-
backend : TkAgg
29+
backend : WXAgg
3030
numerix : numpy # numpy, Numeric or numarray
3131
units : True
3232
#interactive : False # see http://matplotlib.sourceforge.net/interactive.html

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@
3636
# Use False or 0 if you don't want to build
3737
BUILD_TKAGG = 'auto'
3838

39-
# build wxPython GUI with Agg renderer ; requires wxPython package
40-
BUILD_WXAGG = 'auto'
39+
# build wxPython extension code to efficiently blit agg into wx. Only
40+
# needed for wxpython <2.8 if you plan on doing animations
41+
BUILD_WXAGG = 0
4142

4243

4344
# build a small extension to manage the focus on win32 platforms.

0 commit comments

Comments
 (0)