Delete the keybinding for NewTabProfile9 and SwitchToTab9 (#831)

* Deleted keybinding for NewTabProfile0

* Readded NewTabProfile9 with unbounded shortcut

* Untabify

* Deleted NewTabProfile9 and SwitchToTab9
This commit is contained in:
Mario Kneidinger 2019-05-17 17:52:01 +02:00 committed by msftbot[bot]
parent 2b41fad198
commit fd98145af2
3 changed files with 0 additions and 14 deletions

View file

@ -69,9 +69,6 @@ namespace winrt::TerminalApp::implementation
case ShortcutAction::NewTabProfile8:
_NewTabWithProfileHandlers(8);
return true;
case ShortcutAction::NewTabProfile9:
_NewTabWithProfileHandlers(9);
return true;
case ShortcutAction::NewWindow:
_NewWindowHandlers();
@ -128,9 +125,6 @@ namespace winrt::TerminalApp::implementation
case ShortcutAction::SwitchToTab8:
_SwitchToTabHandlers(8);
return true;
case ShortcutAction::SwitchToTab9:
_SwitchToTabHandlers(9);
return true;
}
return false;
}

View file

@ -17,7 +17,6 @@ namespace TerminalApp
NewTabProfile6,
NewTabProfile7,
NewTabProfile8,
NewTabProfile9,
NewWindow,
CloseWindow,
CloseTab,
@ -32,7 +31,6 @@ namespace TerminalApp
SwitchToTab6,
SwitchToTab7,
SwitchToTab8,
SwitchToTab9,
IncreaseFontSize,
DecreaseFontSize,
ScrollUp,

View file

@ -278,9 +278,6 @@ void CascadiaSettings::_CreateDefaultKeybindings()
keyBindings.SetKeyBinding(ShortcutAction::NewTabProfile8,
KeyChord{ KeyModifiers::Ctrl | KeyModifiers::Shift,
static_cast<int>('9') });
keyBindings.SetKeyBinding(ShortcutAction::NewTabProfile9,
KeyChord{ KeyModifiers::Ctrl | KeyModifiers::Shift,
static_cast<int>('0') });
keyBindings.SetKeyBinding(ShortcutAction::ScrollUp,
KeyChord{ KeyModifiers::Ctrl | KeyModifiers::Shift,
@ -321,9 +318,6 @@ void CascadiaSettings::_CreateDefaultKeybindings()
keyBindings.SetKeyBinding(ShortcutAction::SwitchToTab8,
KeyChord{ KeyModifiers::Alt,
static_cast<int>('9') });
keyBindings.SetKeyBinding(ShortcutAction::SwitchToTab9,
KeyChord{ KeyModifiers::Alt,
static_cast<int>('0') });
}
// Method Description: