Remove redundant comment (transparency works)

This commit is contained in:
Vinyl Darkscratch 2018-03-07 00:50:08 -08:00
parent a3b2380365
commit 88ffa8679f

View file

@ -72,7 +72,7 @@ class Journal(QWidget):
if not os.path.exists(img): if not os.path.exists(img):
img = os.path.join(base_path, 'images', '{}.png'.format(name)) img = os.path.join(base_path, 'images', '{}.png'.format(name))
if not os.path.exists(img): return if not os.path.exists(img): return
self.pixmap = QPixmap(img) # XXX Use QImage instead to support transparency! self.pixmap = QPixmap(img)
self.label.setPixmap(self.pixmap) self.label.setPixmap(self.pixmap)
class Niko(QWidget): class Niko(QWidget):