r14619 by jghali - #8761 : width/height spinboxes do not update while you resize using arrow keys

scribus-commit scribus-commit at lists.scribus.net
Mon Feb 1 23:20:20 CET 2010


Revision: 14619
Author: jghali
Date: 2010-02-01T22:12:17.217328Z
Commit message: #8761 : width/height spinboxes do not update while you resize using arrow keys

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

Diffs:
Index: scribus/scribusdoc.cpp
===================================================================
--- scribus/scribusdoc.cpp	(revision 14618)
+++ scribus/scribusdoc.cpp	(revision 14619)
@@ -9556,7 +9556,9 @@
 	ma.rotate(currItem->rotation());
 	double dX = ma.m11() * (currItem->width() - newX) + ma.m21() * (currItem->height() - newY) + ma.dx();
 	double dY = ma.m22() * (currItem->height() - newY) + ma.m12() * (currItem->width() - newX) + ma.dy();
-	currItem->setWidthHeight(newX, newY, true);
+//	#8541, #8761: "when resizing with ALT-arrow, the size values in the PP aren't updated"
+//	currItem->setWidthHeight(newX, newY, true);
+	currItem->setWidthHeight(newX, newY);
 	if ((RotMode != 0) && (fromMP) && (!isLoading()) && (appMode == modeNormal))
 	{
 		double moveX=dX, moveY=dY;




More information about the scribus-commit mailing list