mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-22 07:16:38 +00:00
libcanvas/CanvasJournal.py:begin(): don't reset patchesUndo{[],Level}.
assets/text/TODO: updated.
This commit is contained in:
parent
5f00b60cdd
commit
c1ce141700
@ -18,6 +18,5 @@
|
|||||||
d) switch from wxPython to GTK
|
d) switch from wxPython to GTK
|
||||||
e) {copy,cut,insert from,paste}
|
e) {copy,cut,insert from,paste}
|
||||||
f) {fix,reduce} flickering when viewRect > (0, 0)
|
f) {fix,reduce} flickering when viewRect > (0, 0)
|
||||||
12) fix text tool {re,un}do bug when viewRect > (0, 0) & redo bug when redoing during cursor motion
|
|
||||||
|
|
||||||
vim:ff=dos tw=0
|
vim:ff=dos tw=0
|
||||||
|
@ -7,8 +7,6 @@
|
|||||||
class CanvasJournal():
|
class CanvasJournal():
|
||||||
# {{{ begin(self)
|
# {{{ begin(self)
|
||||||
def begin(self):
|
def begin(self):
|
||||||
if self.patchesUndoLevel > 0:
|
|
||||||
del self.patchesUndo[0:self.patchesUndoLevel]; self.patchesUndoLevel = 0;
|
|
||||||
deltaItem = [[], []]; self.patchesUndo.insert(0, deltaItem);
|
deltaItem = [[], []]; self.patchesUndo.insert(0, deltaItem);
|
||||||
# }}}
|
# }}}
|
||||||
# {{{ end(self)
|
# {{{ end(self)
|
||||||
|
Loading…
Reference in New Issue
Block a user