"+" and "-" buttons does nothing if text item is empty.
@ -327,6 +327,11 @@ void UBGraphicsTextItemDelegate::ChangeTextSize(qreal factor, textChangeMode cha
if (0 == factor)
return;
UBGraphicsTextItem *item = dynamic_cast<UBGraphicsTextItem*>(delegated());
if (item && (QString() == item->toPlainText()))
QTextCursor cursor = delegated()->textCursor();
QTextCharFormat textFormat;