You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-20 16:22:28 +03:00
When panels are shown/hidden, hide sticker picker
This commit is contained in:
@@ -127,10 +127,19 @@ export default class Stickerpicker extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_onWidgetAction(payload) {
|
_onWidgetAction(payload) {
|
||||||
if (payload.action === "user_widget_updated") {
|
switch (payload.action) {
|
||||||
|
case "user_widget_updated":
|
||||||
this.forceUpdate();
|
this.forceUpdate();
|
||||||
} else if (payload.action === "stickerpicker_close") {
|
break;
|
||||||
|
case "stickerpicker_close":
|
||||||
this.setState({showStickers: false});
|
this.setState({showStickers: false});
|
||||||
|
break;
|
||||||
|
case "show_right_panel":
|
||||||
|
case "hide_right_panel":
|
||||||
|
case "show_left_panel":
|
||||||
|
case "hide_left_panel":
|
||||||
|
this.setState({showStickers: false});
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user