From 2e22eb5169e3241dd8b29738b54114903331cb0d Mon Sep 17 00:00:00 2001 From: robertpin Date: Wed, 8 Dec 2021 15:36:41 +0200 Subject: [PATCH] fix(overflow-drawer) Only use overflow drawer on mobile --- react/features/filmstrip/subscriber.web.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/react/features/filmstrip/subscriber.web.js b/react/features/filmstrip/subscriber.web.js index 242426a70..d9e5b4732 100644 --- a/react/features/filmstrip/subscriber.web.js +++ b/react/features/filmstrip/subscriber.web.js @@ -1,5 +1,6 @@ // @flow +import { isMobileBrowser } from '../base/environment/utils'; import { getParticipantCountWithFake } from '../base/participants'; import { StateListenerRegistry, equals } from '../base/redux'; import { clientResized } from '../base/responsive-ui'; @@ -99,7 +100,9 @@ StateListenerRegistry.register( StateListenerRegistry.register( /* selector */ state => state['features/base/responsive-ui'].clientWidth < DISPLAY_DRAWER_THRESHOLD, /* listener */ (widthBelowThreshold, store) => { - store.dispatch(setOverflowDrawer(widthBelowThreshold)); + if (isMobileBrowser()) { + store.dispatch(setOverflowDrawer(widthBelowThreshold)); + } }); /**