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()


_______________________________________________
scribus-commit mailing list
[email protected]
http://lists.scribus.net/mailman/listinfo/scribus-commit

Reply via email to