Update key_bind.rs
Added the classical keybind for zooming in
This commit is contained in:
parent
5ec14f86b3
commit
aa21b31484
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