summaryrefslogtreecommitdiffstats
path: root/graphics/src/renderer.rs
diff options
context:
space:
mode:
authorLibravatar Mattia Guazzaloca <mattia.guazzaloca@gmail.com>2021-11-03 22:48:13 +0100
committerLibravatar Mattia Guazzaloca <mattia.guazzaloca@gmail.com>2021-11-03 22:48:13 +0100
commit8782f45955e8ab90f7da7765b9d753c8473b5c89 (patch)
tree25ff2fd0e998a7e33bb7a922bf4041b085b54734 /graphics/src/renderer.rs
parent8a2a7f7e2144542b47c1d259f296ad7dcc5f3cf9 (diff)
downloadiced-8782f45955e8ab90f7da7765b9d753c8473b5c89.tar.gz
iced-8782f45955e8ab90f7da7765b9d753c8473b5c89.tar.bz2
iced-8782f45955e8ab90f7da7765b9d753c8473b5c89.zip
Fix color issue with Debugger::explain implementation for Renderer
Diffstat (limited to '')
-rw-r--r--graphics/src/renderer.rs2
1 files changed, 1 insertions, 1 deletions
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() {