Skip to content

Commit 346ede4

Browse files
Jammy2211claude
authored andcommitted
fix: pass is_subplot to apply_labels in plot_inversion_reconstruction
Without this, subplot panels always used the standalone title font size (24) instead of the subplot size (20), making rectangular pixelization titles visually inconsistent with all other subplot panels. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c1d8f53 commit 346ede4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoarray/plot/inversion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def plot_inversion_reconstruction(
136136

137137
apply_extent(ax, extent)
138138

139-
apply_labels(ax, title=title, xlabel="" if is_subplot else xlabel, ylabel="" if is_subplot else ylabel)
139+
apply_labels(ax, title=title, xlabel="" if is_subplot else xlabel, ylabel="" if is_subplot else ylabel, is_subplot=is_subplot)
140140

141141
if owns_figure:
142142
save_figure(

0 commit comments

Comments
 (0)