Merge remote-tracking branch 'origin/master' into rblresizableimage-tests

This commit is contained in:
Alan Rogers 2013-04-22 12:51:35 +10:00
Родитель 46d28a99fc 95430b9740
Коммит 92dfdee249
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -135,7 +135,7 @@
NSDrawThreePartImage(dstRect, leftEdge, center, rightEdge, NO, op, alpha, flipped);
} else {
// Vertical three-part image.
NSDrawThreePartImage(dstRect, topEdge, center, bottomEdge, YES, op, alpha, flipped);
NSDrawThreePartImage(dstRect, (flipped ? bottomEdge : topEdge), center, (flipped ? topEdge : bottomEdge), YES, op, alpha, flipped);
}
}