From df2b39541bf6c6b9b1a99f3511911ec274c633ef Mon Sep 17 00:00:00 2001 From: William Toohey Date: Wed, 3 Feb 2016 20:56:00 +1000 Subject: [PATCH] Fix: editor wrong size until handle grabbed --- src/js/HuesSettings.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/js/HuesSettings.js b/src/js/HuesSettings.js index df45f3f..4ade8b6 100644 --- a/src/js/HuesSettings.js +++ b/src/js/HuesSettings.js @@ -265,6 +265,8 @@ HuesSettings.prototype.show = function() { this.core.hideLists(); this.window.style.display = "-webkit-flex"; this.window.style.display = "flex"; + if(this.core.editor) + this.core.editor.resize(); }; HuesSettings.prototype.hide = function() {