mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
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:
parent
8f96a92e75
commit
3393ff757e
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue