diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-02-12 12:53:20 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-02-12 12:54:33 +0100 |
commit | d27b4576f35002a2da8703aec0f3b97208fd0dcd (patch) | |
tree | 4f583de9ef7a24c74d657f9dad215c26fbdae0b2 /src/qt | |
parent | 2aa34298998fe1ecff76f006d7a95fc06b5aae6b (diff) |
Add export action to file menu (as long as we have a file menu, export certainly should be there)
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/bitcoingui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 815d872857..b72f128291 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -239,7 +239,7 @@ void BitcoinGUI::createActions() openBitcoinAction = new QAction(QIcon(":/icons/bitcoin"), tr("Open &Bitcoin"), this); openBitcoinAction->setToolTip(tr("Show the Bitcoin window")); exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this); - exportAction->setToolTip(tr("Export the current view to a file")); + exportAction->setToolTip(tr("Export the data in the current tab to a file")); encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet"), this); encryptWalletAction->setToolTip(tr("Encrypt or decrypt wallet")); encryptWalletAction->setCheckable(true); @@ -267,6 +267,7 @@ void BitcoinGUI::createMenuBar() // Configure the menus QMenu *file = appMenuBar->addMenu(tr("&File")); + file->addAction(exportAction); #ifndef FIRST_CLASS_MESSAGING file->addAction(messageAction); file->addSeparator(); |