This reverts commit 0ba07300e125d3ead890aad3528c3244397fcca6.
This commit is contained in:
parent
0ba07300e1
commit
053fca6e83
@ -301,16 +301,18 @@ class AxisItem(GraphicsWidget):
|
||||
def _updateMaxTextSize(self, x):
|
||||
## Informs that the maximum tick size orthogonal to the axis has
|
||||
## changed; we use this to decide whether the item needs to be resized
|
||||
## to accommodate.
|
||||
## to accomodate.
|
||||
if self.orientation in ['left', 'right']:
|
||||
if x > self.textWidth or x < self.textWidth-10:
|
||||
self.textWidth = x
|
||||
mx = max(self.textWidth, x)
|
||||
if mx > self.textWidth or mx < self.textWidth-10:
|
||||
self.textWidth = mx
|
||||
if self.style['autoExpandTextSpace'] is True:
|
||||
self._updateWidth()
|
||||
#return True ## size has changed
|
||||
else:
|
||||
if x > self.textHeight or x < self.textHeight-10:
|
||||
self.textHeight = x
|
||||
mx = max(self.textHeight, x)
|
||||
if mx > self.textHeight or mx < self.textHeight-10:
|
||||
self.textHeight = mx
|
||||
if self.style['autoExpandTextSpace'] is True:
|
||||
self._updateHeight()
|
||||
#return True ## size has changed
|
||||
|
Loading…
x
Reference in New Issue
Block a user