diff options
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r-- | mainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp index 58267ae..da88b0f 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -409,8 +409,6 @@ void MainWindow::createMenus() importKeyMenu->addAction(keyMgmt->importKeyFromKeyServerAct); keyMenu->addAction(openKeyManagementAct); - viewMenu = menuBar()->addMenu(tr("&View")); - if(settings.value("general/steganography").toBool()) { steganoMenu = menuBar()->addMenu(tr("&Steganography")); QAction* cutPgpHeaderAct = new QAction(tr("Remove PGP Header"), this); @@ -421,6 +419,8 @@ void MainWindow::createMenus() steganoMenu->addAction(addPgpHeaderAct); } + viewMenu = menuBar()->addMenu(tr("&View")); + helpMenu = menuBar()->addMenu(tr("&Help")); helpMenu->addAction(openTutorialAct); helpMenu->addAction(openTranslateAct); |