|
1 |
| -`fig.subplot_mosaic` no longer passes the `width_ratios` or `height_ratios` args to the nested gridspecs. |
| 1 | +``fig.subplot_mosaic`` no longer passes the ``width_ratios`` or ``height_ratios`` args to the nested gridspecs. |
2 | 2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
3 | 3 |
|
4 |
| -Previously, the entirety of the `gridspec_kw` dictionary was passed to |
5 |
| -the nested gridspecs. This caused an error if the inner layout was |
| 4 | +Previously, the entirety of the ``gridspec_kw`` dictionary was passed |
| 5 | +tothe nested gridspecs. This caused an error if the inner layout was |
6 | 6 | incompatible with one of these ratios. A new dictionary is now made,
|
7 |
| -`nested_gs_kw`, where the `"width_ratios"` and `"height_ratios"` keys |
8 |
| -have been removed, which is passed to any nested gridspecs. This |
| 7 | +``nested_gs_kw``, where the ``"width_ratios"`` and ``"height_ratios"`` |
| 8 | +keyshave been removed, which is passed to any nested gridspecs. This |
9 | 9 | prevents such errors.
|