fix active index casting
parent
95e5610ff9
commit
735fdddd09
|
@ -501,7 +501,10 @@ class VSETB_PGT_strip_settings(PropertyGroup):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def active_casting(self):
|
def active_casting(self):
|
||||||
return self.casting[self.casting_index]
|
try:
|
||||||
|
self.casting[self.casting_index]
|
||||||
|
except KeyError:
|
||||||
|
return
|
||||||
|
|
||||||
classes = (
|
classes = (
|
||||||
Asset,
|
Asset,
|
||||||
|
|
Loading…
Reference in New Issue