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.
This commit is contained in:
parent
0053c4df49
commit
687b0cad8e
|
@ -35,7 +35,6 @@ function hideToolbar(force) { // eslint-disable-line no-unused-vars
|
|||
toolbarTimeoutObject = null;
|
||||
|
||||
if (Toolbar.isHovered()
|
||||
|| APP.UI.isRingOverlayVisible()
|
||||
|| SideContainerToggler.isVisible()) {
|
||||
toolbarTimeoutObject = setTimeout(hideToolbar, toolbarTimeout);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue