Refine weight limits

This commit is contained in:
Belleve Invis 2020-04-04 04:16:13 -07:00
parent 9986d538d3
commit fc149b0b1f
2 changed files with 2 additions and 2 deletions

View file

@ -137,7 +137,7 @@ function vlShapeWeight(x) {
return x >= 100 && x <= 900;
}
function vlCssWeight(x) {
return x >= 0 && x <= 1000;
return x > 0 && x < 1000;
}
function vlMenuWeight(x) {
return vlCssWeight(x);