0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00

gui: Fix payAmount tooltip in SendCoinsEntry

This commit is contained in:
João Barbosa 2019-10-23 11:38:30 +01:00
parent a884b32854
commit 0fc81a1e87

View file

@ -17,9 +17,6 @@
<bool>false</bool> <bool>false</bool>
</property> </property>
<widget class="QFrame" name="SendCoins"> <widget class="QFrame" name="SendCoins">
<property name="toolTip">
<string>The amount to send in the selected unit</string>
</property>
<property name="frameShape"> <property name="frameShape">
<enum>QFrame::NoFrame</enum> <enum>QFrame::NoFrame</enum>
</property> </property>
@ -165,7 +162,11 @@
<item row="2" column="1"> <item row="2" column="1">
<layout class="QHBoxLayout" name="horizontalLayoutAmount" stretch="0,1,0"> <layout class="QHBoxLayout" name="horizontalLayoutAmount" stretch="0,1,0">
<item> <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>
<item> <item>
<widget class="QCheckBox" name="checkboxSubtractFeeFromAmount"> <widget class="QCheckBox" name="checkboxSubtractFeeFromAmount">