removed fee section completely
This commit is contained in:
@@ -730,42 +730,6 @@
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayoutSmartFee">
|
||||
<property name="spacing">
|
||||
<number>10</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="labelFeeHeadline">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Maximum">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">font-weight:bold;</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Transaction Fee:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="labelFeeMinimized">
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer_5">
|
||||
<property name="orientation">
|
||||
|
||||
@@ -548,11 +548,11 @@ void SendCoinsDialog::processSendCoinsReturn(const WalletModel::SendCoinsReturn
|
||||
|
||||
void SendCoinsDialog::minimizeFeeSection(bool fMinimize)
|
||||
{
|
||||
ui->labelFeeMinimized->setVisible(fMinimize);
|
||||
//ui->labelFeeMinimized->setVisible(fMinimize);
|
||||
//ui->buttonChooseFee ->setVisible(fMinimize);
|
||||
ui->buttonMinimizeFee->setVisible(!fMinimize);
|
||||
ui->frameFeeSelection->setVisible(!fMinimize);
|
||||
ui->horizontalLayoutSmartFee->setContentsMargins(0, (fMinimize ? 0 : 6), 0, 0);
|
||||
//ui->horizontalLayoutSmartFee->setContentsMargins(0, (fMinimize ? 0 : 6), 0, 0);
|
||||
fFeeMinimized = fMinimize;
|
||||
}
|
||||
|
||||
@@ -614,12 +614,12 @@ void SendCoinsDialog::updateFeeMinimizedLabel()
|
||||
if(!model || !model->getOptionsModel())
|
||||
return;
|
||||
|
||||
if (ui->radioSmartFee->isChecked())
|
||||
ui->labelFeeMinimized->setText(ui->labelSmartFee->text());
|
||||
else {
|
||||
ui->labelFeeMinimized->setText(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), ui->customFee->value()) +
|
||||
((ui->radioCustomPerKilobyte->isChecked()) ? "/kB" : ""));
|
||||
}
|
||||
//if (ui->radioSmartFee->isChecked())
|
||||
//ui->labelFeeMinimized->setText(ui->labelSmartFee->text());
|
||||
//else {
|
||||
// ui->labelFeeMinimized->setText(BitcoinUnits::formatWithUnit(model->getOptionsModel()->getDisplayUnit(), ui->customFee->value()) +
|
||||
// ((ui->radioCustomPerKilobyte->isChecked()) ? "/kB" : ""));
|
||||
//}
|
||||
}
|
||||
|
||||
void SendCoinsDialog::updateMinFeeLabel()
|
||||
|
||||
@@ -66,7 +66,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) :
|
||||
} else {
|
||||
setWindowTitle(tr("Command-line options"));
|
||||
QString header = tr("Usage:") + "\n" +
|
||||
" blackcoin-qt [" + tr("command-line options") + "] " + "\n";
|
||||
" Lore-qt [" + tr("command-line options") + "] " + "\n";
|
||||
QTextCursor cursor(ui->helpMessage->document());
|
||||
cursor.insertText(version);
|
||||
cursor.insertBlock();
|
||||
|
||||
Reference in New Issue
Block a user