- Skip text channel images with no data present
This commit is contained in:
parent
3528b32957
commit
a7dd31c2ad
1 changed files with 4 additions and 0 deletions
|
|
@ -296,6 +296,10 @@ class TextOverlayWindow(OverlayWindow):
|
|||
"""
|
||||
Draw an inline image as a custom emoticon
|
||||
"""
|
||||
if not shape.data in self.image_list:
|
||||
return
|
||||
if not 'url' in self.image_list[shape.data]:
|
||||
return
|
||||
key = self.image_list[shape.data]['url']
|
||||
if key not in self.attachment:
|
||||
get_surface(self.recv_attach,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue