Merge pull request #271 from Kartonrealista/master
Add 'Ctrl' + '+' as a zoom-in shortcut
This commit is contained in:
commit
f075d07bfd
1 changed files with 1 additions and 0 deletions
|
|
@ -55,6 +55,7 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
|
|||
bind!([Ctrl], Key::Character("q".into()), WindowClose);
|
||||
bind!([Ctrl], Key::Character("n".into()), WindowNew);
|
||||
bind!([Ctrl], Key::Character("=".into()), ZoomIn);
|
||||
bind!([Ctrl], Key::Character("+".into()), ZoomIn);
|
||||
bind!([Ctrl], Key::Character("0".into()), ZoomDefault);
|
||||
bind!([Ctrl], Key::Character("-".into()), ZoomOut);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue