diff --git a/src/calibre/gui2/convert/page_setup.py b/src/calibre/gui2/convert/page_setup.py index a0ca16297c..ac93557dd1 100644 --- a/src/calibre/gui2/convert/page_setup.py +++ b/src/calibre/gui2/convert/page_setup.py @@ -27,7 +27,13 @@ class ProfileModel(QAbstractListModel): if role == Qt.DisplayRole: return QVariant(profile.name) if role in (Qt.ToolTipRole, Qt.StatusTipRole, Qt.WhatsThisRole): - return QVariant(profile.description) + w, h = profile.screen_size + if w >= 10000: + ss = _('unlimited') + else: + ss = _('%d x %d pixels') % (w, h) + ss = _('Screen size: %s') % ss + return QVariant('%s [%s]' % (profile.description, ss)) return NONE class PageSetupWidget(Widget, Ui_Form):