From eadb5c8795b801a0c45bc856c571238415dff501 Mon Sep 17 00:00:00 2001 From: William Toohey Date: Sat, 6 Feb 2016 00:37:05 +1000 Subject: [PATCH] Fix editor render --- src/js/HuesSettings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/HuesSettings.js b/src/js/HuesSettings.js index 4bfcb6d..a1018d5 100644 --- a/src/js/HuesSettings.js +++ b/src/js/HuesSettings.js @@ -261,13 +261,13 @@ HuesSettings.prototype.connectCore = function(core) { }; HuesSettings.prototype.show = function() { + this.window.style.display = "-webkit-flex"; + this.window.style.display = "flex"; if(this.core) { this.core.hideLists(); if(this.core.editor) this.core.editor.resize(); } - this.window.style.display = "-webkit-flex"; - this.window.style.display = "flex"; }; HuesSettings.prototype.hide = function() {