Backed out a change I made in parameters in commit 19862
svn: r20017
This commit is contained in:
parent
5efff27bf4
commit
76e1edbd82
@ -339,8 +339,7 @@ class FanChart(Report):
|
|||||||
if self.map[index]:
|
if self.map[index]:
|
||||||
if (generation == 0) and self.circle == FULL_CIRCLE:
|
if (generation == 0) and self.circle == FULL_CIRCLE:
|
||||||
yc = y
|
yc = y
|
||||||
txt = '\n'.join(self.text[index])
|
self.doc.rotate_text(text_style, self.text[index],
|
||||||
self.doc.rotate_text(text_style, txt,
|
|
||||||
xc, yc, text_angle)
|
xc, yc, text_angle)
|
||||||
text_angle += delta
|
text_angle += delta
|
||||||
|
|
||||||
@ -369,12 +368,11 @@ class FanChart(Report):
|
|||||||
start_angle, end_angle, rad1)
|
start_angle, end_angle, rad1)
|
||||||
text_angle += delta
|
text_angle += delta
|
||||||
if self.map[index]:
|
if self.map[index]:
|
||||||
txt = '\n'.join(self.text[index])
|
|
||||||
if self.radial == RADIAL_UPRIGHT and (start_angle >= 90) and (start_angle < 270):
|
if self.radial == RADIAL_UPRIGHT and (start_angle >= 90) and (start_angle < 270):
|
||||||
self.doc.rotate_text(text_style, txt,
|
self.doc.rotate_text(text_style, self.text[index],
|
||||||
xc, yc, text_angle + 180)
|
xc, yc, text_angle + 180)
|
||||||
else:
|
else:
|
||||||
self.doc.rotate_text(text_style, txt,
|
self.doc.rotate_text(text_style, self.text[index],
|
||||||
xc, yc, text_angle)
|
xc, yc, text_angle)
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
|
@ -1614,7 +1614,7 @@ links (like ODF) and write PDF from that format.
|
|||||||
paragraph_style.set_alignment(PARA_ALIGN_CENTER)
|
paragraph_style.set_alignment(PARA_ALIGN_CENTER)
|
||||||
|
|
||||||
new_text = GtkDocText(paragraph_style, 'center',
|
new_text = GtkDocText(paragraph_style, 'center',
|
||||||
self.__markup(text), x, y, angle)
|
self.__markup('\n'.join(text)), x, y, angle)
|
||||||
self._active_element.add_child(new_text)
|
self._active_element.add_child(new_text)
|
||||||
|
|
||||||
# paginating and drawing interface
|
# paginating and drawing interface
|
||||||
|
Loading…
Reference in New Issue
Block a user