fix locked for not floating grid

This commit is contained in:
Pavel Reznikov 2014-12-05 20:35:24 -08:00
parent 057836984c
commit f866de98c3
2 changed files with 3 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -82,6 +82,8 @@
}
else {
_.each(this.nodes, function (n, i) {
if (n.locked)
return;
while (n.y > 0) {
var new_y = n.y - 1;
var can_be_moved = i == 0;