1
0

receive_tab: workaround qdarkstyle bug

This commit is contained in:
ThomasV
2022-07-31 09:55:07 +02:00
parent ad9030bd15
commit a2e059ce7a

View File

@@ -168,6 +168,9 @@ class ReceiveTab(QWidget, MessageBoxMixin, Logger):
self.receive_tabs.setVisible(False)
self.receive_requests_label = QLabel(_('Receive queue'))
# with QDarkStyle, this label may partially cover the qrcode widget.
# setMaximumWidth prevents that
self.receive_requests_label.setMaximumWidth(400)
from .request_list import RequestList
self.request_list = RequestList(self)