This commit is contained in:
Tomas Groth 2019-08-21 21:45:05 +02:00
parent 62ca28cf09
commit aae8b5b811
1 changed files with 4 additions and 1 deletions

View File

@ -210,7 +210,10 @@ class ListPreviewWidget(QtWidgets.QTableWidget, RegistryProperties):
pixmap = QtGui.QPixmap(str(slide['image']))
else:
pixmap = QtGui.QPixmap(str(slide['path']))
pixmap_ratio = pixmap.width() / pixmap.height()
if pixmap.height() > 0:
pixmap_ratio = pixmap.width() / pixmap.height()
else:
pixmap_ratio = 1
label.setPixmap(pixmap)
container = QtWidgets.QWidget()
layout = AspectRatioLayout(container, pixmap_ratio)