From: tobtoht Date: Fri, 22 Oct 2021 12:07:06 +0000 (+0200) Subject: History: change context menu order X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=d1ae7b77e8d130f811e09ffb91cebcabf7ccc117;p=gamesguru%2Ffeather.git History: change context menu order --- diff --git a/src/HistoryWidget.cpp b/src/HistoryWidget.cpp index a0852308..beddccbd 100644 --- a/src/HistoryWidget.cpp +++ b/src/HistoryWidget.cpp @@ -27,8 +27,8 @@ HistoryWidget::HistoryWidget(QSharedPointer ctx, QWidget *parent) // copy menu m_copyMenu->addAction("Transaction ID", this, [this]{copy(copyField::TxID);}); - m_copyMenu->addAction("Description", this, [this]{copy(copyField::Description);}); m_copyMenu->addAction("Date", this, [this]{copy(copyField::Date);}); + m_copyMenu->addAction("Description", this, [this]{copy(copyField::Description);}); m_copyMenu->addAction("Amount", this, [this]{copy(copyField::Amount);}); ui->history->setContextMenuPolicy(Qt::CustomContextMenu); @@ -88,7 +88,7 @@ void HistoryWidget::showContextMenu(const QPoint &point) { menu.addMenu(m_copyMenu); menu.addAction("Show details", this, &HistoryWidget::showTxDetails); menu.addAction("View on block explorer", this, &HistoryWidget::onViewOnBlockExplorer); - menu.addAction("Create tx proof", this, &HistoryWidget::createTxProof); + menu.addAction("Create Tx Proof", this, &HistoryWidget::createTxProof); menu.exec(ui->history->viewport()->mapToGlobal(point)); }