Skip to content

Commit

Permalink
Fix broken 'S' and 'X' shortcuts
Browse files Browse the repository at this point in the history
Were not updating on pressing
  • Loading branch information
Gary Keeble authored and Gary Keeble committed Jul 19, 2016
1 parent 392906c commit d1d84a2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1395,6 +1395,7 @@ function BlackboxLogViewer() {
try {
if(!(shifted)) {
userSettings.graphSmoothOverride = !userSettings.graphSmoothOverride; // toggle current setting
graph.refreshOptions(userSettings);
graph.refreshGraphConfig();
invalidateGraph();
// Update smoothing status flags on status bar
Expand All @@ -1413,6 +1414,7 @@ function BlackboxLogViewer() {
try {
if(!(shifted)) {
userSettings.graphExpoOverride = !userSettings.graphExpoOverride; // toggle current setting
graph.refreshOptions(userSettings);
graph.refreshGraphConfig();
invalidateGraph();
// Update smoothing status flags on status bar
Expand Down

0 comments on commit d1d84a2

Please sign in to comment.