From f5b3261c2ad4279b4555b85b7d3e31b98b428e34 Mon Sep 17 00:00:00 2001 From: Timo K Date: Tue, 16 Nov 2021 18:35:36 +0100 Subject: [PATCH] show widgets on layout change --- src/components/structures/RoomView.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/structures/RoomView.tsx b/src/components/structures/RoomView.tsx index 342a8c31f34..33573b32566 100644 --- a/src/components/structures/RoomView.tsx +++ b/src/components/structures/RoomView.tsx @@ -327,6 +327,10 @@ export class RoomView extends React.Component { private onWidgetLayoutChange = () => { if (!this.state.room) return; + dis.dispatch({ + action: "appsDrawer", + show: true, + }); this.checkWidgets(this.state.room); };