We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ee4a19 commit 2b2717bCopy full SHA for 2b2717b
proplot/rctools.py
@@ -328,9 +328,11 @@ def get_ipython():
328
# Mapping of settings without "dots" to their full names. This lets us pass
329
# all settings as kwargs, e.g. ax.format(landcolor='b') instead of the much
330
# more verbose ax.format(rc_kw={'land.color':'b'}).
331
+# WARNING: rcParamsShort has to be in here because Axes.format() only checks
332
+# _rc_nodots to filter out the rc kwargs!
333
_rc_nodots = {
334
name.replace('.', ''): name
- for names in (defaultParamsLong, rcParams)
335
+ for names in (defaultParamsShort, defaultParamsLong, rcParams)
336
for name in names.keys()
337
}
338
0 commit comments