Skip to content

Commit 21d364e

Browse files
authored
Merge pull request #696 from Sichao25/dependency
Debug: The sizes of the scatter plots are not set correctly.
2 parents e625412 + 9f7bcfa commit 21d364e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamo/plot/scatters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2224,7 +2224,7 @@ def scatters_single_input(
22242224

22252225
# if #total_panel is 1, `_matplotlib_points` will create a figure. No need to create a figure here and generate a blank figure.
22262226
if ax is None:
2227-
figure, ax = plt.subplots()
2227+
figure, ax = plt.subplots(figsize=figsize, facecolor=background)
22282228

22292229
color_out = None
22302230

0 commit comments

Comments
 (0)