/trunk/Scribus/ChangeLogCVS |
---|
1,5 → 1,10 |
Changes since 1.2 |
05.09.2004 |
* bug #1029: Crash with empty text when pressing left cursor key |
* bug #1031: Bad version number in the sla files |
* bug #1035: Adjust Frame to Picture doesnt set dirty doc flag |
03.09.2004 |
* bug #1028: Crash when editing a text frame with spaces at the beginning in Block mode |
* feature #1024: Added Hyphenation Patterns for Afrikaans |
/trunk/Scribus/scribus/page.cpp |
---|
8210,8 → 8210,8 |
PageItem *b = SelItem.at(0); |
if (b->PicAvail) |
{ |
double w = static_cast<double>(b->pixm.width()); |
double h = static_cast<double>(b->pixm.height()); |
double w = static_cast<double>(b->pixm.width()) * b->LocalScX; |
double h = static_cast<double>(b->pixm.height()) * b->LocalScY; |
double x = b->LocalX * b->LocalScX; |
double y = b->LocalY * b->LocalScY; |
if (!b->isTableItem) |
8222,6 → 8222,7 |
b->LocalY = 0; |
} |
update(); |
emit DocChanged(); |
} |
} |
} |
/trunk/Scribus/scribus/libabout/about.cpp |
---|
56,7 → 56,7 |
tabLayout1->addWidget( PixmapLabel1 ); |
BuildID = new QLabel( tab, "BB" ); |
BuildID->setAlignment(Qt::AlignCenter); |
QString bu = tr("%1. %2 %3 ").arg("03").arg("September").arg("2004"); |
QString bu = tr("%1. %2 %3 ").arg("05").arg("September").arg("2004"); |
#ifdef HAVE_CMS |
bu += "C"; |
#else |