Comments on: Resize Grid, Improved Select, Delete Selection/Clear All http://localhost/wp/2008/06/resize-grid-improved-select-delete-selectionclear-all/ this title probably isn't very original Fri, 30 May 2014 19:32:06 +0000 hourly 1 http://wordpress.org/?v=3.9.1 By: admin http://localhost/wp/2008/06/resize-grid-improved-select-delete-selectionclear-all/comment-page-1/#comment-40 Sun, 08 Jun 2008 13:16:42 +0000 http://antimatter15.110mb.com/wp/?p=94#comment-40 Yes, i know. But i just went directly to Ax.canvas.renderer.removeAll() without first calling Ax.render.deleteAll(). Same effect.

]]>
By: josep_ssv http://localhost/wp/2008/06/resize-grid-improved-select-delete-selectionclear-all/comment-page-1/#comment-35 Sun, 08 Jun 2008 05:13:10 +0000 http://antimatter15.110mb.com/wp/?p=94#comment-35 It is not necessary to have chosen to erase all

In richdraw.js

RichDrawEditor.prototype.deleteAll = function() {
if (this.selected) {
this.renderer.removeAll();
}
};

change to

RichDrawEditor.prototype.deleteAll = function() {
this.renderer.removeAll();
};

]]>