mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
Fix variable scope on simplePen
This commit is contained in:
@ -8,12 +8,13 @@
|
|||||||
|
|
||||||
ns.SimplePen = function() {
|
ns.SimplePen = function() {
|
||||||
this.toolId = "tool-pen";
|
this.toolId = "tool-pen";
|
||||||
this.helpText = "Pen tool"
|
this.helpText = "Pen tool";
|
||||||
};
|
|
||||||
|
|
||||||
this.previousCol = null;
|
this.previousCol = null;
|
||||||
this.previousRow = null;
|
this.previousRow = null;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
pskl.utils.inherit(ns.SimplePen, ns.BaseTool);
|
pskl.utils.inherit(ns.SimplePen, ns.BaseTool);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user