From 38916407020f493e3c645de8c632eeaefe6d9720 Mon Sep 17 00:00:00 2001 From: todashuta Date: Sun, 3 Jul 2022 00:13:24 +0900 Subject: [PATCH] fix (close #2) --- black_to_alpha_zero.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/black_to_alpha_zero.py b/black_to_alpha_zero.py index d95f78e..5afef74 100644 --- a/black_to_alpha_zero.py +++ b/black_to_alpha_zero.py @@ -23,7 +23,7 @@ bl_info = { "name": "Black to Alpha Zero", "author": "todashuta", - "version": (1, 1, 2), + "version": (1, 1, 3), "blender": (2, 80, 0), "location": "Image Editor > Sidebar > Tool > Black to Alpha Zero", "description": "", @@ -84,6 +84,7 @@ def execute(self, context): target_image_pxs[i+3] = 0 # Alpha target_image.pixels = target_image_pxs + target_image.update() return {"FINISHED"}