r14597 by jghali - fix line related values incorrectly reported in PP when using custom dash array

scribus-commit scribus-commit at lists.scribus.net
Mon Feb 1 19:45:40 CET 2010


Revision: 14597
Author: jghali
Date: 2010-01-30T20:52:51.135664Z
Commit message: fix line related values incorrectly reported in PP when using custom dash array

Changeset: 
M  /branches/Version135/Scribus/scribus/propertiespalette.cpp

Diffs:
Index: scribus/propertiespalette.cpp
===================================================================
--- scribus/propertiespalette.cpp	(revision 14596)
+++ scribus/propertiespalette.cpp	(revision 14597)
@@ -2170,8 +2170,6 @@
 	setSizeLocked(i->sizeLocked());
 	setFlippedH(i->imageFlippedH());
 	setFlippedV(i->imageFlippedV());
-	setLineWidth(i->lineWidth());
-	setLIvalue(i->lineStyle(), i->lineEnd(), i->lineJoin());
 	RoVal = i->rotation();
 	double rr = i->rotation();
 	if (i->rotation() > 0)
@@ -2358,6 +2356,8 @@
 	}
 	setXY(CurItem->xPos(), CurItem->yPos());
 	setScaleAndOffset(i->imageXScale(), i->imageYScale(), i->imageXOffset(), i->imageYOffset());
+	setLineWidth(i->lineWidth());
+	setLIvalue(i->lineStyle(), i->lineEnd(), i->lineJoin());
 	connect(imageXScaleSpinBox, SIGNAL(valueChanged(double)), this, SLOT(HChange()));
 	connect(imageYScaleSpinBox, SIGNAL(valueChanged(double)), this, SLOT(VChange()));
 	connect(imageXOffsetSpinBox, SIGNAL(valueChanged(double)), this, SLOT(NewLocalXY()));




More information about the scribus-commit mailing list