Commit ·
ee2af1f
1
Parent(s): 10d1cee
Fix Unicode encoding error - Replace checkmark with ASCII text
Browse files
modules/art_reels/services/block_art.py
CHANGED
|
@@ -261,7 +261,7 @@ class BlockArt:
|
|
| 261 |
except:
|
| 262 |
font = ImageFont.load_default()
|
| 263 |
|
| 264 |
-
text = "
|
| 265 |
bbox = draw.textbbox((0, 0), text, font=font)
|
| 266 |
text_width = bbox[2] - bbox[0]
|
| 267 |
draw.text(
|
|
|
|
| 261 |
except:
|
| 262 |
font = ImageFont.load_default()
|
| 263 |
|
| 264 |
+
text = "Done! Complete!"
|
| 265 |
bbox = draw.textbbox((0, 0), text, font=font)
|
| 266 |
text_width = bbox[2] - bbox[0]
|
| 267 |
draw.text(
|
modules/art_reels/services/drawing_animator.py
CHANGED
|
@@ -284,7 +284,7 @@ class DrawingAnimator:
|
|
| 284 |
except:
|
| 285 |
font = ImageFont.load_default()
|
| 286 |
|
| 287 |
-
text = "
|
| 288 |
bbox = draw.textbbox((0, 0), text, font=font)
|
| 289 |
text_width = bbox[2] - bbox[0]
|
| 290 |
draw.text(
|
|
|
|
| 284 |
except:
|
| 285 |
font = ImageFont.load_default()
|
| 286 |
|
| 287 |
+
text = "Done! Complete!"
|
| 288 |
bbox = draw.textbbox((0, 0), text, font=font)
|
| 289 |
text_width = bbox[2] - bbox[0]
|
| 290 |
draw.text(
|