Browse Source

adjust invoice screen for scaling

283
bkkcoins 12 years ago
parent
commit
04dc6a0ea7
  1. 4
      lib/gui_qt.py

4
lib/gui_qt.py

@ -212,12 +212,12 @@ class QR_Window(QWidget):
main_box = QHBoxLayout() main_box = QHBoxLayout()
self.qrw = QRCodeWidget() self.qrw = QRCodeWidget()
main_box.addWidget(self.qrw) main_box.addWidget(self.qrw, 1)
vbox = QVBoxLayout() vbox = QVBoxLayout()
main_box.addLayout(vbox) main_box.addLayout(vbox)
main_box.addStretch(1) #main_box.addStretch(1)
self.address_label = QLabel("") self.address_label = QLabel("")
self.address_label.setFont(QFont(MONOSPACE_FONT)) self.address_label.setFont(QFont(MONOSPACE_FONT))

Loading…
Cancel
Save