feat: update constraints on window resize

This commit is contained in:
Arnošt Pleskot 2024-02-09 21:18:05 +01:00
parent d6710ded04
commit 1316d884fe
No known key found for this signature in database

View file

@ -2486,7 +2486,11 @@ class App extends React.Component<AppProps, AppState> {
if (!supportsResizeObserver) { if (!supportsResizeObserver) {
this.refreshEditorBreakpoints(); this.refreshEditorBreakpoints();
} }
this.setState({}); if (this.state.scrollConstraints) {
this.setState((state) => constrainScrollState(state));
} else {
this.setState({});
}
}); });
/** generally invoked only if fullscreen was invoked programmatically */ /** generally invoked only if fullscreen was invoked programmatically */