diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-10-18 19:42:40 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-10-25 13:25:25 +0200 |
| commit | 70b14636cd60529c87b2cc61516f5d1bf49299a5 (patch) | |
| tree | d2bec1b1e3fa9991320b4e062ffe82a40193e68f /src/qt/forms/receivecoinsdialog.ui | |
| parent | qt: show payment information in one text area (diff) | |
| download | discoin-70b14636cd60529c87b2cc61516f5d1bf49299a5.tar.xz discoin-70b14636cd60529c87b2cc61516f5d1bf49299a5.zip | |
qt: general polish after adding new receive flow
- We no longer have an address book, but "address lists", update message
accordingly
- Add tooltips here and there
- Clarify text on buttons
- add Copy Address button to receive request dialog
Diffstat (limited to 'src/qt/forms/receivecoinsdialog.ui')
| -rw-r--r-- | src/qt/forms/receivecoinsdialog.ui | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/src/qt/forms/receivecoinsdialog.ui b/src/qt/forms/receivecoinsdialog.ui index a5946883b..e01a23b9c 100644 --- a/src/qt/forms/receivecoinsdialog.ui +++ b/src/qt/forms/receivecoinsdialog.ui @@ -30,13 +30,16 @@ </widget> </item> <item row="3" column="1"> - <widget class="BitcoinAmountField" name="reqAmount" native="true"> + <widget class="BitcoinAmountField" name="reqAmount"> <property name="minimumSize"> <size> <width>80</width> <height>0</height> </size> </property> + <property name="toolTip"> + <string>The amount to request</string> + </property> </widget> </item> <item row="4" column="0"> @@ -50,7 +53,11 @@ </widget> </item> <item row="4" column="1"> - <widget class="QLineEdit" name="reqLabel"/> + <widget class="QLineEdit" name="reqLabel"> + <property name="toolTip"> + <string>The label to associate with the receiving address</string> + </property> + </widget> </item> <item row="5" column="0"> <widget class="QLabel" name="label_3"> @@ -63,7 +70,11 @@ </widget> </item> <item row="5" column="1"> - <widget class="QLineEdit" name="reqMessage"/> + <widget class="QLineEdit" name="reqMessage"> + <property name="toolTip"> + <string>The message to attach to payment request</string> + </property> + </widget> </item> <item row="6" column="0"> <widget class="QLabel" name="label_4"> @@ -74,8 +85,11 @@ </item> <item row="6" column="1"> <widget class="QCheckBox" name="reuseAddress"> + <property name="toolTip"> + <string>Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before.</string> + </property> <property name="text"> - <string>R&euse an existing receiving address</string> + <string>R&euse an existing receiving address (not recommended)</string> </property> </widget> </item> |