From 303d6942f4badb851cc755a0c9d4b05ca94e610f Mon Sep 17 00:00:00 2001 From: Isaiah Odhner Date: Thu, 13 Apr 2023 00:28:57 -0400 Subject: [PATCH] Switch out fill tool icon to avoid text row offset artifacts --- paint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paint.py b/paint.py index 92b60a8..32b2c94 100644 --- a/paint.py +++ b/paint.py @@ -61,7 +61,7 @@ class Tool(Enum): Tool.free_form_select: "โš", Tool.select: "โฌš", Tool.eraser: "๐Ÿงผ", - Tool.fill: "๐Ÿซ—", + Tool.fill: "๐ŸŒŠ", # "๐Ÿซ—" causes jutting out in Ubuntu terminal, "๐Ÿชฃ" causes the opposite in VS Code terminal Tool.pick_color: "๐Ÿ’‰", Tool.magnifier: "๐Ÿ”", Tool.pencil: "โœ๏ธ",