File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ title: Changelog
11
11
[ ] ( :attr:`~plotnine.data.midwest` ) no longer have any of their columns as categoricals.
12
12
This matches the respective datasets in R. {{< issue 913 >}}
13
13
14
+ ### Bug Fixes
15
+
16
+ - Fixed bug in with the ` legend_key_height ` themeable where it wasn't applied.
17
+ {{< issue 921 >}}
18
+
14
19
## v0.14.5
15
20
(2025-01-02)
16
21
[ ![ ] ( https://zenodo.org/badge/DOI/10.5281/zenodo.14587381.svg )] ( https://doi.org/10.5281/zenodo.14587381 )
Original file line number Diff line number Diff line change @@ -452,7 +452,7 @@ def key_heights(self) -> list[float]:
452
452
If legend is horizontal, then key heights must be equal, so we
453
453
use the maximum
454
454
"""
455
- hs = [h for h , _ in self ._key_dimensions ]
455
+ hs = [h for _ , h in self ._key_dimensions ]
456
456
if self .is_horizontal :
457
457
return [max (hs )] * len (hs )
458
458
return hs
You can’t perform that action at this time.
0 commit comments