Commit f9fba0e9 by Torkel Ödegaard

fix(timerange): fixed time range zoom out shortcut, fixes #6837

parent 890e5ce8
......@@ -101,7 +101,11 @@ export class KeybindingSrv {
});
this.bind('t z', () => {
scope.appEvent('zoom-out');
scope.appEvent('zoom-out', 2);
});
this.bind('ctrl+z', () => {
scope.appEvent('zoom-out', 2);
});
this.bind('t left', () => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment