r22898 by jghali - Revert changes not committed intentionally
scribus-commit
scribus-commit at lists.scribus.net
Fri Mar 15 15:13:17 UTC 2019
Author: jghali
Date: Fri Mar 15 15:13:16 2019
New Revision: 22898
URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=22898
Log:
Revert changes not committed intentionally
Modified:
trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp
Modified: trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=22898&path=/trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp
==============================================================================
--- trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp (original)
+++ trunk/Scribus/scribus/ui/propertiespalette_xyz.cpp Fri Mar 15 15:13:16 2019
@@ -115,13 +115,13 @@
languageChange();
- /*connect(xposSpin, SIGNAL(valueChanged(double)), this, SLOT(handleNewX()));
+ connect(xposSpin, SIGNAL(valueChanged(double)), this, SLOT(handleNewX()));
connect(yposSpin, SIGNAL(valueChanged(double)), this, SLOT(handleNewY()));
connect(widthSpin, SIGNAL(valueChanged(double)), this, SLOT(handleNewW()));
connect(heightSpin, SIGNAL(valueChanged(double)), this, SLOT(handleNewH()));
connect(rotationSpin, SIGNAL(valueChanged(double)), this, SLOT(handleRotation()));
connect(flipH, SIGNAL(clicked()), this, SLOT(handleFlipH()));
- connect(flipV, SIGNAL(clicked()), this, SLOT(handleFlipV()));*/
+ connect(flipV, SIGNAL(clicked()), this, SLOT(handleFlipV()));
connect(levelUp, SIGNAL(clicked()), this, SLOT(handleRaise()));
connect(levelDown, SIGNAL(clicked()), this, SLOT(handleLower()));
connect(levelTop, SIGNAL(clicked()), this, SLOT(handleFront()));
@@ -129,9 +129,9 @@
connect(basePointWidget, SIGNAL(buttonClicked(int)), this, SLOT(handleBasePoint(int)));
connect(nameEdit , SIGNAL(Leaved()) , this, SLOT(handleNewName()));
- /*connect(doLock , SIGNAL(clicked()), this, SLOT(handleLock()));
+ connect(doLock , SIGNAL(clicked()), this, SLOT(handleLock()));
connect(noPrint , SIGNAL(clicked()), this, SLOT(handlePrint()));
- connect(noResize , SIGNAL(clicked()), this, SLOT(handleLockSize()));*/
+ connect(noResize , SIGNAL(clicked()), this, SLOT(handleLockSize()));
connect(doGroup , SIGNAL(clicked()), this, SLOT(handleGrouping()) );
connect(doUnGroup, SIGNAL(clicked()), this, SLOT(handleUngrouping()) );
@@ -661,9 +661,9 @@
double rr = r;
if (r > 0)
rr = 360 - rr;
- //bool sigBlocked = rotationSpin->blockSignals(true);
- rotationSpin->showValue(fabs(rr));
- //rotationSpin->blockSignals(sigBlocked);
+ bool sigBlocked = rotationSpin->blockSignals(true);
+ rotationSpin->setValue(fabs(rr));
+ rotationSpin->blockSignals(sigBlocked);
}
void PropertiesPalette_XYZ::handleNewX()
More information about the scribus-commit
mailing list