From 88ffa8679fc58292df651490fb830e08485ef5aa Mon Sep 17 00:00:00 2001 From: Vinyl Darkscratch Date: Wed, 7 Mar 2018 00:50:08 -0800 Subject: [PATCH] Remove redundant comment (transparency works) --- journal/unix/journal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/journal/unix/journal.py b/journal/unix/journal.py index b4c539a..abf2ebc 100644 --- a/journal/unix/journal.py +++ b/journal/unix/journal.py @@ -72,7 +72,7 @@ class Journal(QWidget): if not os.path.exists(img): img = os.path.join(base_path, 'images', '{}.png'.format(name)) 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) class Niko(QWidget):