Removed font-size cap for on-card text (fixes bug: #2368) (#2427)

This commit is contained in:
Name Temporarily Hidden 2017-02-27 05:20:54 +01:00 committed by Zach H
parent d0088f6a18
commit c0e7d0c7c7

View file

@ -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);