From e47abeaaa545783889292a2f9b74ae547e82b77c Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Sun, 10 Mar 2019 13:18:59 -0400 Subject: [PATCH] Hid light pads if light is disabled. --- app/lib/ui/light.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/lib/ui/light.js b/app/lib/ui/light.js index b01db60..af476c1 100644 --- a/app/lib/ui/light.js +++ b/app/lib/ui/light.js @@ -92,11 +92,13 @@ light.disable = function () { light.disabled = true; $('#tb_toolbar_item_light').hide(); $('#seq_labels .spacer').eq(1).hide(); + $('#light_set').hide(); } light.enable = function () { light.disabled = false; $('#tb_toolbar_item_light').show(); $('#seq_labels .spacer').eq(1).show(); + $('#light_set').show(); }; light.colorPickers = function () { 'use strict';