Skip to content

Commit

Permalink
Toggle debug toolbar via ctrl-D
Browse files Browse the repository at this point in the history
  • Loading branch information
davkal committed May 4, 2016
1 parent a86180a commit 1a7920c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/scripts/components/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class App extends React.Component {
} else if (char === 'q') {
dispatch(unpinMetric());
dispatch(selectMetric(null));
} else if (char === 'd') {
} else if (ev.code === 'KeyD' && ev.ctrlKey) {
toggleDebugToolbar();
this.forceUpdate();
} else if (char === '?') {
Expand Down

0 comments on commit 1a7920c

Please sign in to comment.