mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-24 04:02:36 +01:00
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:
parent
1a6d3bf01b
commit
533c89ee23
@ -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");
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user