From d1ae7b77e8d130f811e09ffb91cebcabf7ccc117 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Fri, 22 Oct 2021 14:07:06 +0200 Subject: [PATCH] History: change context menu order --- src/HistoryWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)); } -- 2.52.0