r14240 by fschmid - Fixed Bug #8541: "when resizing with ALT-arrow, the size values in the PP aren't updated"
scribus-commit
scribus-commit at lists.scribus.net
Tue Oct 27 12:45:20 CET 2009
Revision: 14240
Author: fschmid
Date: 2009-10-27T07:49:13.964584Z
Commit message: Fixed Bug #8541: "when resizing with ALT-arrow, the size values in the PP aren't updated"
Changeset:
M /trunk/Scribus/scribus/scribusdoc.cpp
Diffs:
Index: scribus/scribusdoc.cpp
===================================================================
--- scribus/scribusdoc.cpp (revision 14239)
+++ scribus/scribusdoc.cpp (revision 14240)
@@ -9819,7 +9819,8 @@
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);
+// 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