drawing: rename the stroke from 'l' to 's'
Leftover copy/paste error from when this class had a Layer subclass
This commit is contained in:
parent
9fbfe17e13
commit
09bfe44dd7
|
@ -100,10 +100,10 @@ class Drawing(GObject.Object):
|
||||||
'''
|
'''
|
||||||
Create a new stroke and make it the current stroke
|
Create a new stroke and make it the current stroke
|
||||||
'''
|
'''
|
||||||
l = Stroke(self)
|
s = Stroke(self)
|
||||||
self.strokes.append(l)
|
self.strokes.append(s)
|
||||||
self._current_stroke += 1
|
self._current_stroke += 1
|
||||||
return l
|
return s
|
||||||
|
|
||||||
def to_json(self):
|
def to_json(self):
|
||||||
json_data = {
|
json_data = {
|
||||||
|
|
Loading…
Reference in New Issue