aboutsummaryrefslogtreecommitdiff
path: root/lib/gui/esubtitle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gui/esubtitle.cpp')
-rw-r--r--lib/gui/esubtitle.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gui/esubtitle.cpp b/lib/gui/esubtitle.cpp
index 5cf4cfa2..41adebdb 100644
--- a/lib/gui/esubtitle.cpp
+++ b/lib/gui/esubtitle.cpp
@@ -121,7 +121,8 @@ void eSubtitleWidget::setPixmap(ePtr<gPixmap> &pixmap, gRegion changed, eRect pi
changed.scale(m_pixmap_dest.width(), 720, m_pixmap_dest.height(), 576);
changed.moveBy(ePoint(m_pixmap_dest.x(), m_pixmap_dest.y()));
- changed.scale(size().width(), pixmap->size().width(), size().height(), pixmap->size().height());
+ if (pixmap->size().width() && pixmap->size().height())
+ changed.scale(size().width(), pixmap->size().width(), size().height(), pixmap->size().height());
invalidate(changed);
}