Skip to content

Commit 205cffa

Browse files
committed
Merge #17226: gui: Fix payAmount tooltip in SendCoinsEntry
0fc81a1 gui: Fix payAmount tooltip in SendCoinsEntry (João Barbosa) Pull request description: Before the tooltip shows in wrong places: ![Screenshot 2019-10-23 at 11 33 49](https://user-images.githubusercontent.com/3534524/67384904-f6b6a380-f589-11e9-832c-ec1643014b96.png) ![Screenshot 2019-10-23 at 11 33 23](https://user-images.githubusercontent.com/3534524/67384905-f74f3a00-f589-11e9-9944-a52fee097e02.png) Now only shows in the amount field: ![Screenshot 2019-10-23 at 11 35 30](https://user-images.githubusercontent.com/3534524/67384919-ff0ede80-f589-11e9-8ce4-c122e11fe885.png) ACKs for top commit: laanwj: ACK 0fc81a1 Tree-SHA512: 0857e568c21d380a68c81e9be3212b1745d7d3199a1d5fdef9afc8feed0272f215726fa98bbf8a3fb332389c5454f2316bc1581f1a2ccd76cef46a0e3ac6f99f
2 parents b688b85 + 0fc81a1 commit 205cffa

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/qt/forms/sendcoinsentry.ui

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
<bool>false</bool>
1818
</property>
1919
<widget class="QFrame" name="SendCoins">
20-
<property name="toolTip">
21-
<string>The amount to send in the selected unit</string>
22-
</property>
2320
<property name="frameShape">
2421
<enum>QFrame::NoFrame</enum>
2522
</property>
@@ -165,7 +162,11 @@
165162
<item row="2" column="1">
166163
<layout class="QHBoxLayout" name="horizontalLayoutAmount" stretch="0,1,0">
167164
<item>
168-
<widget class="BitcoinAmountField" name="payAmount"/>
165+
<widget class="BitcoinAmountField" name="payAmount">
166+
<property name="toolTip">
167+
<string>The amount to send in the selected unit</string>
168+
</property>
169+
</widget>
169170
</item>
170171
<item>
171172
<widget class="QCheckBox" name="checkboxSubtractFeeFromAmount">

0 commit comments

Comments
 (0)