# HG changeset patch # User Nicholas Jillings # Date 1493045398 -3600 # Node ID 1954075487ed6292dc807c12afc1f44312129568 # Parent 9e2363f789123760940c9603eb5586439d26d6d7# Parent dfc2959fb7c666edbbc129a4764bede7fffa2c5d Merge branch 'master' into vnext diff -r 9e2363f78912 -r 1954075487ed js/core.js --- a/js/core.js Sun Apr 23 11:51:58 2017 +0100 +++ b/js/core.js Mon Apr 24 15:49:58 2017 +0100 @@ -3300,7 +3300,7 @@ }; })(); var range = audioEngineContext.audioObjects.reduce(function (a, b) { - var v = b.interfaceDOM.getValue(); + var v = b.interfaceDOM.getValue() * 100.0; return { min: Math.min(a.min, v), max: Math.max(a.max, v) @@ -3310,10 +3310,10 @@ max: 0 }); if (range.min > scales.min) { - str += "At least one fragment must be below the " + range.min + " mark."; + str += "At least one fragment must be below the " + scales.min + " mark."; state = false; } else if (range.max < scales.max) { - str += "At least one fragment must be above the " + range.max + " mark."; + str += "At least one fragment must be above the " + scales.max + " mark."; state = false; } if (state === false) {