Fixed TimerBar not disappearing with 0 timers #588

This commit is contained in:
Daniël van Noord
2021-02-21 23:12:15 +01:00
parent e139f9d500
commit b854773766
2 changed files with 2 additions and 2 deletions

View File

@@ -461,7 +461,7 @@ CM.Disp.CreateTimerBar = function() {
CM.Disp.TimerBar.id = 'CMTimerBar';
CM.Disp.TimerBar.style.position = 'absolute';
CM.Disp.TimerBar.style.display = 'none';
CM.Disp.TimerBar.style.height = '30px';
CM.Disp.TimerBar.style.height = '0px';
CM.Disp.TimerBar.style.fontSize = '10px';
CM.Disp.TimerBar.style.fontWeight = 'bold';
CM.Disp.TimerBar.style.backgroundColor = 'black';