diff --git a/core/tilesmanager.cpp b/core/tilesmanager.cpp index 8a57f6d1f..7600d1a2a 100644 --- a/core/tilesmanager.cpp +++ b/core/tilesmanager.cpp @@ -313,7 +313,8 @@ void TilesManager::Private::setPixmap( const QPixmap *pixmap, const NormalizedRe totalPixels -= tile.pixmap->width()*tile.pixmap->height(); delete tile.pixmap; } - tile.pixmap = new QPixmap( pixmap->copy( tile.rect.geometry( width, height ).translated( -pixmapRect.topLeft() ) ) ); + NormalizedRect rotatedRect = TilesManager::toRotatedRect( tile.rect, rotation ); + tile.pixmap = new QPixmap( pixmap->copy( rotatedRect.geometry( width, height ).translated( -pixmapRect.topLeft() ) ) ); tile.rotation = rotation; totalPixels += tile.pixmap->width()*tile.pixmap->height(); tile.dirty = false;