diff options
author | 2021-11-04 14:37:40 +0700 | |
---|---|---|
committer | 2021-11-04 14:37:40 +0700 | |
commit | 61c747b53589d98f477fea95f85d2ea5349666d3 (patch) | |
tree | 25ff2fd0e998a7e33bb7a922bf4041b085b54734 | |
parent | 8a2a7f7e2144542b47c1d259f296ad7dcc5f3cf9 (diff) | |
parent | 8782f45955e8ab90f7da7765b9d753c8473b5c89 (diff) | |
download | iced-61c747b53589d98f477fea95f85d2ea5349666d3.tar.gz iced-61c747b53589d98f477fea95f85d2ea5349666d3.tar.bz2 iced-61c747b53589d98f477fea95f85d2ea5349666d3.zip |
Merge pull request #1109 from mettz/master
Fix color issue with Debugger::explain implementation for Renderer
-rw-r--r-- | graphics/src/renderer.rs | 2 |
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() { |