ylabel not visible if yscale ~1E-6

Hi,

I found a minor bug, feel free to ignore it :slight_smile: . If the vertical scale of a plot has numbers ~1E-6 the ylabel won't be visible. Example script:

路路路

#-------------------------------------------
import matplotlib.pyplot as plt
import numpy as np

x = np.arange(-10.0,10.0,0.1)
plt.plot(x,1E-6*np.sin(x))
plt.ylabel("Y Label")
plt.show()
#-------------------------------------------

The workaround is of course simple, just adjust figure.subplot.left.

Ubuntu 8.10, matplotlib svn (rev. 7032).

JLS