From c0e7d0c7c787c4c4fb6e0e3744dde17947887f31 Mon Sep 17 00:00:00 2001 From: Name Temporarily Hidden Date: Mon, 27 Feb 2017 05:20:54 +0100 Subject: [PATCH] Removed font-size cap for on-card text (fixes bug: #2368) (#2427) --- cockatrice/src/abstractcarditem.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/cockatrice/src/abstractcarditem.cpp b/cockatrice/src/abstractcarditem.cpp index 5197f906..e2e19881 100644 --- a/cockatrice/src/abstractcarditem.cpp +++ b/cockatrice/src/abstractcarditem.cpp @@ -80,8 +80,6 @@ void AbstractCardItem::transformPainter(QPainter *painter, const QSizeF &transla int fontSize = round(translatedSize.height() / 8); if (fontSize < 9) fontSize = 9; - if (fontSize > 10) - fontSize = 10; f.setPixelSize(fontSize); painter->setFont(f);