Merge pull request #94

2a71bd6 Change default mixin to 4 & add mixin # to confirmation window (dEBRUYNE-1)
This commit is contained in:
Riccardo Spagni
2016-11-05 10:08:24 +02:00
2 changed files with 4 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ Rectangle {
color: "#F0EEEE"
function scaleValueToMixinCount(scaleValue) {
var scaleToMixinCount = [2,3,4,5,5,5,6,7,8,9,10,15,20,25];
var scaleToMixinCount = [4,5,6,7,8,9,10,11,12,13,14,15,20,25];
if (scaleValue < scaleToMixinCount.length) {
return scaleToMixinCount[scaleValue];
} else {