keep track of small_tile_i, used to unlink previous tiles later

This commit is contained in:
j 2012-06-03 01:52:08 +02:00
parent e0152e2c26
commit c688e95a6b
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,7 @@ class Timelines():
# open small tile
if small_tile_x == 0:
image_mode = 'L' if mode == 'audio' else 'RGB'
small_tile_i = int(index / 60)
self.small_tile_i = small_tile_i = int(index / 60)
if small_tile_i < self.small_tile_n - 1:
w = self.small_tile_w
else: