From 8bd64ed4c6a160645696377076da7d657971ef08 Mon Sep 17 00:00:00 2001 From: David Wakelin Date: Tue, 9 Apr 2019 18:04:00 +0100 Subject: [PATCH] Fixed missing border colour as per bug #208 --- src/dat/gui/GUI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dat/gui/GUI.js b/src/dat/gui/GUI.js index 972c307..83bf92d 100644 --- a/src/dat/gui/GUI.js +++ b/src/dat/gui/GUI.js @@ -1060,7 +1060,7 @@ function augmentController(gui, li, controller) { } else if (controller instanceof ColorController) { dom.addClass(li, 'color'); controller.updateDisplay = common.compose(function(val) { - li.style.borderLeftColor = controller.__color.toString(); + li.style.borderLeftColor = controller.__color.toHexString(); return val; }, controller.updateDisplay);