Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Always unhide widgets on layout change (pinning a widget) #7299

Merged
merged 2 commits into from
Dec 13, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/structures/RoomView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,10 @@ export class RoomView extends React.Component<IRoomProps, IRoomState> {

private onWidgetLayoutChange = () => {
if (!this.state.room) return;
dis.dispatch({
action: "appsDrawer",
show: true,
});
this.checkWidgets(this.state.room);
};

Expand Down