From 0793dd44f9303a3196d83eeb0fe3176f2849d153 Mon Sep 17 00:00:00 2001 From: Nitwel Date: Wed, 17 Apr 2024 19:49:45 +0200 Subject: [PATCH] fix dot border --- app/content/system/dot/dot.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/content/system/dot/dot.gd b/app/content/system/dot/dot.gd index 8ed2ad4..0650f44 100644 --- a/app/content/system/dot/dot.gd +++ b/app/content/system/dot/dot.gd @@ -19,7 +19,7 @@ func _ready(): # Update active R.effect(func(_arg): - label.outline_modulate=Color(242, 90, 56, 1) if active.value else Color(0, 0, 0, 1) + label.outline_modulate=Color(242 / 255.0, 90 / 255.0, 56 / 255.0, 1) if active.value else Color(0, 0, 0, 1) ) # Update disabled