client/js/renderer/scene.js
changeset 435 e529b633c339
parent 434 0d5998b32a7c
child 443 4c7ab16e5845
child 445 705a2e9c6c9d
equal deleted inserted replaced
434:0d5998b32a7c 435:e529b633c339
   831         redraw: function() {
   831         redraw: function() {
   832             if(! this.redrawActive ) {
   832             if(! this.redrawActive ) {
   833                 return;
   833                 return;
   834             }
   834             }
   835             _.each(this.representations, function(_representation) {
   835             _.each(this.representations, function(_representation) {
   836                 _representation.redraw(true);
   836                 _representation.redraw({ dontRedrawEdges:true });
   837             });
   837             });
   838             if (this.minimap) {
   838             if (this.minimap) {
   839                 this.redrawMiniframe();
   839                 this.redrawMiniframe();
   840             }
   840             }
   841             paper.view.draw();
   841             paper.view.draw();