diff --git a/README.md b/README.md index df94bf6..eced36f 100644 --- a/README.md +++ b/README.md @@ -32,17 +32,17 @@ MOUSE2 ; Drag canvas @ ! ; Clear canvas ``` -##Save File -``` -$ new_name.jpg ; Create a new file with name -``` - ##Load File ``` / dir/file_name.jpg 10,10 100x100 ; Load image, at 10,10 with size 100x100 / dir/file_name.jpg 10,10 100x ; Load image, at 10,10 with size 100w and auto height ``` +##Save File +``` +$ new_name.jpg ; Create a new file with name +``` + ##Brush(Pointers) ``` > 10 ; Size 10 diff --git a/scripts/modules/file.load.js b/scripts/modules/file.load.js index 176593d..6b5e1bc 100644 --- a/scripts/modules/file.load.js +++ b/scripts/modules/file.load.js @@ -2,12 +2,10 @@ function FileLoad(rune) { Module.call(this,rune); - this.parameters = [Filepath,Position,Rect,Bang]; + this.parameters = [Filepath,Position,Rect]; this.active = function(cmd) { - if(cmd.bang()){ this.storage = []; } - ronin.overlay.clear(); if(!cmd.filepath() && !cmd.value()){ return; }