/trunk/Scribus/scribus/pageitem_group.cpp |
---|
190,8 → 190,7 |
else |
p->beginLayer(1.0 - fillTransparency(), fillBlendmode()); |
p->setMaskMode(0); |
if (((m_width / groupWidth) != 1.0) || ((m_height / groupHeight) != 1.0)) |
p->scale(m_width / groupWidth, m_height / groupHeight); |
p->scale(m_width / groupWidth, m_height / groupHeight); |
for (int em = 0; em < groupItemList.count(); ++em) |
{ |
PageItem* embedded = groupItemList.at(em); |
/trunk/Scribus/scribus/scpainter.cpp |
---|
228,7 → 228,7 |
void ScPainter::scale( double x, double y ) |
{ |
cairo_scale (m_cr, x, y); |
m_zoomFactor = qMax(x, y); |
m_zoomFactor *= qMax(x, y); |
} |
void ScPainter::moveTo( const double &x, const double &y ) |