From 33d72d7793448a094b9c771096863572b94a9524 Mon Sep 17 00:00:00 2001 From: isaak654 Date: Sat, 30 Oct 2021 03:29:51 +0200 Subject: [PATCH] Replace default hotkey with Shift+Pause --- SandboxiePlus/SandMan/SandMan.cpp | 2 +- SandboxiePlus/SandMan/Windows/SettingsWindow.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp index d88ec2ba..5d3b2684 100644 --- a/SandboxiePlus/SandMan/SandMan.cpp +++ b/SandboxiePlus/SandMan/SandMan.cpp @@ -1024,7 +1024,7 @@ void CSandMan::SetupHotKeys() m_pHotkeyManager->unregisterAllHotkeys(); if (theConf->GetBool("Options/EnablePanicKey", false)) - m_pHotkeyManager->registerHotkey(theConf->GetString("Options/PanicKeySequence", "Ctrl+Alt+Cancel"), HK_PANIC); + m_pHotkeyManager->registerHotkey(theConf->GetString("Options/PanicKeySequence", "Shift+Pause"), HK_PANIC); } void CSandMan::OnHotKey(size_t id) diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp index 14591e30..264d6c05 100644 --- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp +++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp @@ -217,7 +217,7 @@ void CSettingsWindow::LoadSettings() ui.chkNotifyRecovery->setChecked(!theConf->GetBool("Options/InstantRecovery", true)); ui.chkPanic->setChecked(theConf->GetBool("Options/EnablePanicKey", false)); - ui.keyPanic->setKeySequence(QKeySequence(theConf->GetString("Options/PanicKeySequence", "Ctrl+Alt+Cancel"))); + ui.keyPanic->setKeySequence(QKeySequence(theConf->GetString("Options/PanicKeySequence", "Shift+Pause"))); ui.chkWatchConfig->setChecked(theConf->GetBool("Options/WatchIni", true));