Skip to content

Commit ec76724

Browse files
committed
Reverted a comment from 'option_combine_images' to 'option_image_nocomposite'. Also moved the whats_new addition into a separate file.
1 parent 4f2a61d commit ec76724

File tree

3 files changed

+8
-17
lines changed

3 files changed

+8
-17
lines changed

doc/users/whats_new.rst

-10
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,6 @@ directive - ``close-figs`` - that closes any previous figure windows before
7575
creating the plots. This can help avoid some surprising duplicates of plots
7676
when using ``plot_directive``.
7777

78-
Configuration (rcParams)
79-
------------------------
80-
81-
``image.composite_image`` added
82-
```````````````````````````````
83-
Controls whether vector graphics backends (i.e. PDF, PS, and SVG) combine
84-
multiple images on a set of axes into a single composite image. Saving each
85-
image individually can be useful if you generate vector graphics files in
86-
matplotlib and then edit the files further in Inkscape or other programs.
87-
8878
.. _whats-new-1-4:
8979

9080
new in matplotlib-1.4

doc/users/whats_new/rcparams.rst

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
Added "legend.framealpha" key to rcParams
22
`````````````````````````````````````````
3-
43
Added a key and the corresponding logic to control the default transparency of
54
legend frames. This feature was written into the docstring of axes.legend(),
65
but not yet implemented.
76

8-
97
Added "figure.titlesize" and "figure.titleweight" keys to rcParams
108
``````````````````````````````````````````````````````````````````
11-
129
Two new keys were added to rcParams to control the default font size and weight
1310
used by the figure title (as emitted by ``pyplot.suptitle()``).
1411

15-
16-
1712
Added "legend.facecolor" and "legend.edgecolor" keys to rcParams
1813
````````````````````````````````````````````````````````````````
19-
2014
The new keys control colors (background and edge) of legend patches.
15+
16+
``image.composite_image`` added to rcParams
17+
```````````````````````````````````````````
18+
Controls whether vector graphics backends (i.e. PDF, PS, and SVG) combine
19+
multiple images on a set of axes into a single composite image. Saving each
20+
image individually can be useful if you generate vector graphics files in
21+
matplotlib and then edit the files further in Inkscape or other programs.

lib/matplotlib/figure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ class Figure(Artist):
249249
250250
*suppressComposite*
251251
For multiple figure images, the figure will make composite
252-
images depending on the renderer option_combine_images
252+
images depending on the renderer option_image_nocomposite
253253
function. If suppressComposite is True|False, this will
254254
override the renderer.
255255
"""

0 commit comments

Comments
 (0)