From 8782f45955e8ab90f7da7765b9d753c8473b5c89 Mon Sep 17 00:00:00 2001 From: Mattia Guazzaloca Date: Wed, 3 Nov 2021 22:48:13 +0100 Subject: Fix color issue with Debugger::explain implementation for Renderer --- graphics/src/renderer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/src/renderer.rs b/graphics/src/renderer.rs index fa63991b..8f234f1f 100644 --- a/graphics/src/renderer.rs +++ b/graphics/src/renderer.rs @@ -112,7 +112,7 @@ fn explain_layout( background: Background::Color(Color::TRANSPARENT), border_radius: 0.0, border_width: 1.0, - border_color: [0.6, 0.6, 0.6, 0.5].into(), + border_color: color, }); for child in layout.children() { -- cgit