Explorar el Código

fix(ToolbarToggler): remove call overlay from the timeout check

Remove check for the call overlay being visible in postponing
the toolbar being hidden, as we don't want to have it displayed at all
when the overlay is there.
master
paweldomas hace 8 años
padre
commit
687b0cad8e
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0
    1
      modules/UI/toolbars/ToolbarToggler.js

+ 0
- 1
modules/UI/toolbars/ToolbarToggler.js Ver fichero

35
     toolbarTimeoutObject = null;
35
     toolbarTimeoutObject = null;
36
 
36
 
37
     if (Toolbar.isHovered()
37
     if (Toolbar.isHovered()
38
-            || APP.UI.isRingOverlayVisible()
39
             || SideContainerToggler.isVisible()) {
38
             || SideContainerToggler.isVisible()) {
40
         toolbarTimeoutObject = setTimeout(hideToolbar, toolbarTimeout);
39
         toolbarTimeoutObject = setTimeout(hideToolbar, toolbarTimeout);
41
     } else {
40
     } else {

Loading…
Cancelar
Guardar