keep track of small_tile_i, used to unlink previous tiles later
This commit is contained in:
parent
e0152e2c26
commit
c688e95a6b
1 changed files with 1 additions and 1 deletions
|
@ -586,7 +586,7 @@ class Timelines():
|
||||||
# open small tile
|
# open small tile
|
||||||
if small_tile_x == 0:
|
if small_tile_x == 0:
|
||||||
image_mode = 'L' if mode == 'audio' else 'RGB'
|
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:
|
if small_tile_i < self.small_tile_n - 1:
|
||||||
w = self.small_tile_w
|
w = self.small_tile_w
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue