8000 Fix the minotick-fix · matplotlib/matplotlib@0b3f63c · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

8000
Appearance settings

Commit 0b3f63c

Browse files
committed
Fix the minotick-fix
Sorry I messed up it last time.
1 parent 8000e2f commit 0b3f63c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axes/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3222,7 +3222,7 @@ def minorticks_on(self):
32223222
ax.set_minor_locator(mticker.LogLocator(s.base, s.subs))
32233223
elif scale == 'symlog':
32243224
s = ax._scale
3225-
ax.set_minor_locator(mticker.SymLogLocator(s.base, s.subs))
3225+
ax.set_minor_locator(mticker.SymmetricalLogLocator(s.base, s.subs))
32263226
else:
32273227
ax.set_minor_locator(mticker.AutoMinorLocator())
32283228

0 commit comments

Comments
 (0)
0