diff --git a/cockatrice/src/client/ui/widgets/cards/card_info_picture_widget.cpp b/cockatrice/src/client/ui/widgets/cards/card_info_picture_widget.cpp index 9a9f477e4..78c5c2bac 100644 --- a/cockatrice/src/client/ui/widgets/cards/card_info_picture_widget.cpp +++ b/cockatrice/src/client/ui/widgets/cards/card_info_picture_widget.cpp @@ -150,7 +150,8 @@ void CardInfoPictureWidget::paintEvent(QPaintEvent *event) } QPixmap transformedPixmap = resizedPixmap; // Default pixmap - if (info && (info->getProperty("layout") == "split" || info->getProperty("maintype") == "Battle")) { + if (info && (info->getProperty("layout") == "split" || info->getProperty("layout") == "planar" || + info->getProperty("maintype") == "Battle")) { // Rotate pixmap 90 degrees to the left QTransform transform; transform.rotate(90);