diff --git a/src/Application.cpp b/src/Application.cpp index 4275c285..65fd10b3 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -377,7 +377,7 @@ void Application::startBackgroundMode(MainWindow* window) KAction* action = window->actionCollection()->addAction("toggle-background-window"); action->setObjectName(QLatin1String("Konsole Background Mode")); action->setText(i18n("Toggle Background Window")); - action->setGlobalShortcut(KShortcut(QKeySequence(Qt::Key_F12))); + action->setGlobalShortcut(KShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_F12))); connect(action, SIGNAL(triggered()), this, SLOT(toggleBackgroundInstance())); diff --git a/src/main.cpp b/src/main.cpp index 6e662dbc..560f00d5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -101,10 +101,9 @@ void fillCommandLineOptions(KCmdLineOptions& options) options.add("profile ", ki18n("Name of profile to use for new Konsole instance")); options.add("list-profiles", ki18n("List the available profiles")); - // TODO - Update this when F12 is no longer hard coded options.add("background-mode", ki18n("Start Konsole in the background and bring to the front" - " when the F12 key is pressed")); + " when Ctrl+Shift+F12 (by default) is pressed")); options.add("new-tab", ki18n("Create a new tab in an existing window rather than" " creating a new window"));