Fixes the QR code widget to include a 10px margin to offset the widget on dark theme background.

This commit is contained in:
Ryan McGuire 2013-05-17 12:40:51 -04:00
parent e8ffe29554
commit b757b41561
1 changed files with 5 additions and 0 deletions

View File

@ -62,6 +62,11 @@ class QRCodeWidget(QWidget):
left = (r.width() - size)/2
top = (r.height() - size)/2
# Make a white margin around the QR in case of dark theme use:
margin = 10
qp.setBrush(white)
qp.drawRect(left-margin, top-margin, size+(margin*2), size+(margin*2))
for r in range(k):
for c in range(k):
if self.qr.isDark(r, c):