mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
enhance: add hotkey Ctrl+Shift+H
(Windows/Linux) and ⌘+⇧+H
(macOS) to switch left side bar back to dashboard mode
This commit is contained in:
parent
6206626687
commit
51e05dcddc
5 changed files with 32 additions and 20 deletions
|
@ -124,6 +124,12 @@ namespace SourceGit.Views
|
|||
e.Handled = true;
|
||||
return;
|
||||
}
|
||||
else if (e.Key == Key.H && e.KeyModifiers.HasFlag(KeyModifiers.Shift))
|
||||
{
|
||||
repo.IsSearching = false;
|
||||
e.Handled = true;
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (e.Key == Key.Escape)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue