qt PreviewTxDialog: change feerounding_icon to be a QToolButton

QPushButtons with dark theme have a huge min width (they have text in mind)

related: #6300
This commit is contained in:
SomberNight 2020-07-02 13:49:54 +02:00
parent 8f96a92e75
commit 3393ff757e
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -727,9 +727,9 @@ class PreviewTxDialog(BaseTxDialog, TxEditor):
_('Also, when batching RBF transactions, BIP 125 imposes a lower bound on the fee.'))
self.show_message(title=_('Fee rounding'), msg=text)
self.feerounding_icon = QPushButton(read_QIcon('info.png'), '')
self.feerounding_icon.setFixedWidth(round(2.2 * char_width_in_lineedit()))
self.feerounding_icon.setFlat(True)
self.feerounding_icon = QToolButton()
self.feerounding_icon.setIcon(read_QIcon('info.png'))
self.feerounding_icon.setAutoRaise(True)
self.feerounding_icon.clicked.connect(feerounding_onclick)
self.feerounding_icon.setVisible(False)