diff options
| author | Martin Kaistra | 2017-05-23 21:24:58 +0200 |
|---|---|---|
| committer | Martin Kaistra | 2017-05-23 21:24:58 +0200 |
| commit | 025a11000540b1ece54702b921dbccae2cc12dd2 (patch) | |
| tree | 3471bce95192d76b60c215d2d053cd43df7af167 /core.py | |
| parent | 487743104f26e5c7608b7119b99f5aa83108edb6 (diff) | |
try fixing problems with high dpi screens, font size for video in pixels
Diffstat (limited to 'core.py')
| -rw-r--r-- | core.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,7 +60,7 @@ class Core(): self._image1 = QtGui.QImage(self._image) painter = QPainter(self._image1) font = titleFont - font.setPointSizeF(fontSize) + font.setPixelSize(fontSize) painter.setFont(font) painter.setPen(QColor(255, 255, 255)) |
