From 5cce34ab3a74e0c428921efbc670c255f7393b97 Mon Sep 17 00:00:00 2001 From: Timo K Date: Tue, 16 Nov 2021 16:58:13 +0100 Subject: [PATCH] fix maximised state being loaded correctly --- src/components/structures/RoomView.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/structures/RoomView.tsx b/src/components/structures/RoomView.tsx index 7f20d0c824e..342a8c31f34 100644 --- a/src/components/structures/RoomView.tsx +++ b/src/components/structures/RoomView.tsx @@ -332,15 +332,15 @@ export class RoomView extends React.Component { private checkWidgets = (room) => { this.setState({ - hasPinnedWidgets: WidgetLayoutStore.instance.hasPinnedWidgets(this.state.room), - mainSplitContentType: this.getMainSplitContentType(), - showApps: this.shouldShowApps(this.state.room), + hasPinnedWidgets: WidgetLayoutStore.instance.hasPinnedWidgets(room), + mainSplitContentType: this.getMainSplitContentType(room), + showApps: this.shouldShowApps(room), }); }; - private getMainSplitContentType = () => { + private getMainSplitContentType = (room) => { // TODO-video check if video should be displayed in main panel - return (WidgetLayoutStore.instance.hasMaximisedWidget(this.state.room)) + return (WidgetLayoutStore.instance.hasMaximisedWidget(room)) ? MainSplitContentType.MaximisedWidget : MainSplitContentType.Timeline; };