Subversion Repositories Scribus

Compare Revisions

Ignore whitespace Rev 14083 → Rev 14084

/trunk/Scribus/scribus/ui/propertiespalette.cpp
2484,10 → 2484,14
yposLabel->setText( tr( "&Y-Pos:" ) );
heightLabel->setText( tr( "&Height:" ) );
HaveItem = false;
Xpos->setValue(0);
Ypos->setValue(0);
Width->setValue(0);
Height->setValue(0);
// Xpos->setValue(0);
// Ypos->setValue(0);
// Width->setValue(0);
// Height->setValue(0);
Xpos->setValue(gx);
Ypos->setValue(gy);
Width->setValue(gw);
Height->setValue(gh);
Rotation->setValue(0);
RoundRect->setValue(0);
HaveItem = true;
/trunk/Scribus/scribus/scribus.cpp
5283,6 → 5283,11
}
doc->m_Selection->delaySignalsOff();
int docSelectionCount=doc->m_Selection->count();
if (docSelectionCount > 0)
{
doc->m_Selection->itemAt(0)->connectToGUI();
doc->m_Selection->itemAt(0)->emitAllToGUI();
}
if (docSelectionCount > 1)
{
doc->m_Selection->setGroupRect();
5371,6 → 5376,11
}
doc->m_Selection->delaySignalsOff();
int docSelectionCount = doc->m_Selection->count();
if (docSelectionCount > 0)
{
doc->m_Selection->itemAt(0)->connectToGUI();
doc->m_Selection->itemAt(0)->emitAllToGUI();
}
if (docSelectionCount > 1)
{
double x, y, w, h;
5433,6 → 5443,11
}
doc->m_Selection->delaySignalsOff();
int docSelectionCount=doc->m_Selection->count();
if (docSelectionCount > 0)
{
doc->m_Selection->itemAt(0)->connectToGUI();
doc->m_Selection->itemAt(0)->emitAllToGUI();
}
if (docSelectionCount > 1)
{
double x, y, w, h;