瀏覽代碼

shortcuts: change init bind key to d

bergquist 8 年之前
父節點
當前提交
e828f3a97b
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      public/app/core/services/keybindingSrv.ts

+ 2 - 2
public/app/core/services/keybindingSrv.ts

@@ -188,14 +188,14 @@ export class KeybindingSrv {
     });
 
     // collapse all rows
-    this.bind('r C', () => {
+    this.bind('d C', () => {
       _.each(dashboard.rows, function(row) {
         row.collapse = true;
       });
     });
 
     // expand all rows
-    this.bind('r E', () => {
+    this.bind('d E', () => {
       _.each(dashboard.rows, function(row) {
         row.collapse = false;
       });