mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
Merge pull request 'Send: add help labels' (#233) from tobtoht/feather:send_help_labels into master
Reviewed-on: https://git.wownero.com/feather/feather/pulls/233
This commit is contained in:
commit
6619927a7d
2 changed files with 21 additions and 4 deletions
|
@ -30,6 +30,16 @@ SendWidget::SendWidget(QWidget *parent) :
|
|||
ui->label_conversionAmount->hide();
|
||||
ui->btn_openAlias->hide();
|
||||
|
||||
ui->label_PayTo->setHelpText("Recipient of the funds.\n\n"
|
||||
"You may enter a Monero address, or an alias (email-like address that forwards to a Monero address)");
|
||||
ui->label_Description->setHelpText("Description of the transaction (optional).\n\n"
|
||||
"The description is not sent to the recipient of the funds. It is stored in your wallet cache, "
|
||||
"and displayed in the 'History' tab.");
|
||||
ui->label_Amount->setHelpText("Amount to be sent.\n\nThis is the exact amount the recipient will receive. "
|
||||
"In addition to this amount a transaction fee will be subtracted from your balance. "
|
||||
"You will be able to review the transaction fee before the transaction is broadcast.\n\n"
|
||||
"To send all your balance, click the Max button to the right.");
|
||||
|
||||
this->setupComboBox();
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>603</width>
|
||||
<width>647</width>
|
||||
<height>175</height>
|
||||
</rect>
|
||||
</property>
|
||||
|
@ -39,7 +39,7 @@
|
|||
<number>0</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<widget class="HelpLabel" name="label_PayTo">
|
||||
<property name="text">
|
||||
<string>Pay to</string>
|
||||
</property>
|
||||
|
@ -53,7 +53,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
<widget class="HelpLabel" name="label_Description">
|
||||
<property name="text">
|
||||
<string>Description</string>
|
||||
</property>
|
||||
|
@ -63,7 +63,7 @@
|
|||
<widget class="QLineEdit" name="lineDescription"/>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_3">
|
||||
<widget class="HelpLabel" name="label_Amount">
|
||||
<property name="text">
|
||||
<string>Amount</string>
|
||||
</property>
|
||||
|
@ -184,6 +184,13 @@
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>HelpLabel</class>
|
||||
<extends>QLabel</extends>
|
||||
<header>components.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources/>
|
||||
<connections/>
|
||||
<slots>
|
||||
|
|
Loading…
Reference in a new issue