8000 Return default savefig transparency to False by lukelbd · Pull Request #252 · proplot-dev/proplot · GitHub
[go: up one dir, main page]

Skip to content

Return default savefig transparency to False #252

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 29, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Set default figure transparency to False
  • Loading branch information
lukelbd committed Jun 29, 2021
commit c4199b85b3c36342d98ccec6a575bde17da3d337
2 changes: 1 addition & 1 deletion proplot/internals/rcsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
'savefig.dpi': 1200, # academic journal recommendations for raster line art
'savefig.facecolor': 'white', # different from figure.facecolor
'savefig.format': 'pdf', # most users use bitmap, but vector graphics are better
'savefig.transparent': True,
'savefig.transparent': False,
'xtick.direction': TICKDIR,
'xtick.labelsize': LABELSIZE,
'xtick.major.pad': TICKPAD,
Expand Down
0