Skip to content

Commit

Permalink
uncomment line
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodore Lindsay committed Apr 9, 2018
1 parent 232f49d commit 0fd1571
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion figurefirst/svg_to_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ class FFSVGText(FFSVGItem,object):

def __init__(self,tagnode):
super(FFSVGItem,self).__init__(tagnode)
#print 'here'
x = float(self.node.getAttribute('x'))
y = float(self.node.getAttribute('y'))
self.p1 = np.array([x,y,1])
Expand All @@ -317,7 +318,7 @@ def __init__(self,tagnode):
#self.p1 = np.array([x,y,1])
#self.p2 = np.array([x+w,h+y,1])
self.load_style()
#self.load_text()
self.load_text()
self.node.getElementsByTagName('tspan')[0].childNodes[0]

def load_style(self):
Expand Down

0 comments on commit 0fd1571

Please sign in to comment.