|
@@ -122,9 +122,9 @@ StateListenerRegistry.register(
|
122
|
122
|
/* selector */ state => state['features/base/responsive-ui'].clientWidth < ASPECT_RATIO_BREAKPOINT,
|
123
|
123
|
/* listener */ (widthBelowThreshold, store) => {
|
124
|
124
|
const state = store.getState();
|
125
|
|
- const { autohideFilmstrip } = state['features/base/config'];
|
|
125
|
+ const { disableFilmstripAutohiding } = state['features/base/config'];
|
126
|
126
|
|
127
|
|
- if (autohideFilmstrip) {
|
|
127
|
+ if (!disableFilmstripAutohiding) {
|
128
|
128
|
store.dispatch(setFilmstripVisible(!widthBelowThreshold));
|
129
|
129
|
}
|
130
|
130
|
});
|