mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-28 13:02:38 +02:00
Merge #17226: gui: Fix payAmount tooltip in SendCoinsEntry
0fc81a1e87
gui: Fix payAmount tooltip in SendCoinsEntry (João Barbosa) Pull request description: Before the tooltip shows in wrong places:   Now only shows in the amount field:  ACKs for top commit: laanwj: ACK0fc81a1e87
Tree-SHA512: 0857e568c21d380a68c81e9be3212b1745d7d3199a1d5fdef9afc8feed0272f215726fa98bbf8a3fb332389c5454f2316bc1581f1a2ccd76cef46a0e3ac6f99f
This commit is contained in:
commit
205cffaf38
@ -17,9 +17,6 @@
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<widget class="QFrame" name="SendCoins">
|
||||
<property name="toolTip">
|
||||
<string>The amount to send in the selected unit</string>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
@ -165,7 +162,11 @@
|
||||
<item row="2" column="1">
|
||||
<layout class="QHBoxLayout" name="horizontalLayoutAmount" stretch="0,1,0">
|
||||
<item>
|
||||
<widget class="BitcoinAmountField" name="payAmount"/>
|
||||
<widget class="BitcoinAmountField" name="payAmount">
|
||||
<property name="toolTip">
|
||||
<string>The amount to send in the selected unit</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="checkboxSubtractFeeFromAmount">
|
||||
|
Loading…
Reference in New Issue
Block a user