Remove default spell check shortcut - thx Javier :)

Save As" and "Spell Check" had the same keyboard shortcut (Ctrl+Shift+S)
This commit is contained in:
Nikolaj Olsson 2024-08-30 06:53:17 +02:00
parent 1a6d3bf01b
commit 533c89ee23
2 changed files with 6 additions and 1 deletions

View File

@ -135,6 +135,11 @@ namespace Nikse.SubtitleEdit.Core.Settings
settings.Shortcuts.GeneralSwitchOriginalAndTranslation = "Control+Alt+O";
}
if (settings.Shortcuts.MainFileSaveAs == "Control+S" && settings.Shortcuts.MainSpellCheck == "Control+S")
{
settings.Shortcuts.MainSpellCheck = "Alt+F7";
}
if (settings.General.UseFFmpegForWaveExtraction && string.IsNullOrEmpty(settings.General.FFmpegLocation) && Configuration.IsRunningOnWindows)
{
var guessPath = Path.Combine(Configuration.DataDirectory, "ffmpeg", "ffmpeg.exe");

View File

@ -449,7 +449,7 @@ namespace Nikse.SubtitleEdit.Core.Settings
MainVideo500MsRight = "Alt+Right";
MainVideoFullscreen = "Alt+Return";
MainVideoReset = "Control+D0";
MainSpellCheck = "Control+Shift+S";
MainSpellCheck = "Alt+F7";
MainSpellCheckFindDoubleWords = "Control+Shift+D";
MainSpellCheckAddWordToNames = "Control+Shift+L";
MainSynchronizationAdjustTimes = "Control+Shift+A";