OSDN Git Service

*[Bugfix] proxy naming conversion error of self._mark_mipmap_dirty, which causes...
authorsigetch <sigetch@users.sourceforge.jp>
Wed, 5 Oct 2011 16:40:05 +0000 (01:40 +0900)
committersigetch <sigetch@users.sourceforge.jp>
Wed, 5 Oct 2011 16:40:05 +0000 (01:40 +0900)
lib/tiledsurface.py

index 5d06100..dac6891 100644 (file)
@@ -291,7 +291,7 @@ class Surface(mypaintlib.TiledSurface):
         new = set(self.tiledict.iteritems())
         dirty = old.symmetric_difference(new)
         for pos, tile in dirty:
-            self.mark_mipmap_dirty(*pos)
+            self._mark_mipmap_dirty(*pos)
         bbox = get_tiles_bbox([pos for (pos, tile) in dirty])
         if not bbox.empty():
             self.notify_observers(*bbox)