diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-12-12 22:21:54 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-12-12 22:21:54 +0000 |
commit | 4bacdcf43d14193cdc864e03ac21317e1405c2c5 (patch) | |
tree | f9e08481796f49a2fbc0fcf7f62fbe441795aab3 /mainwindow.cpp | |
parent | minor beautifying in keyimportdetails (diff) | |
download | gpg4usb-4bacdcf43d14193cdc864e03ac21317e1405c2c5.tar.gz gpg4usb-4bacdcf43d14193cdc864e03ac21317e1405c2c5.zip |
added advamced settings tab with steganography and disable steganography per default
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@700 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r-- | mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp index c1eb521..7dbfbc5 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -414,7 +414,7 @@ void MainWindow::createMenus() importKeyMenu->addAction(keyMgmt->importKeyFromKeyServerAct); keyMenu->addAction(openKeyManagementAct); - if(settings.value("general/steganography").toBool()) { + if(settings.value("advanced/steganography").toBool()) { steganoMenu = menuBar()->addMenu(tr("&Steganography")); QAction* cutPgpHeaderAct = new QAction(tr("Remove PGP Header"), this); connect(cutPgpHeaderAct, SIGNAL(triggered()), this, SLOT(cutPgpHeader())); |