Indicate event tile resize after rendering
This commit is contained in:
parent
196e1a4f66
commit
a516c18cc5
1 changed files with 3 additions and 1 deletions
|
@ -214,8 +214,10 @@ module.exports = withMatrixClient(React.createClass({
|
||||||
const verified = await this.props.matrixClient.isEventSenderVerified(mxEvent);
|
const verified = await this.props.matrixClient.isEventSenderVerified(mxEvent);
|
||||||
this.setState({
|
this.setState({
|
||||||
verified: verified,
|
verified: verified,
|
||||||
});
|
}, () => {
|
||||||
|
// Decryption may have caused a change in size
|
||||||
this.props.onWidgetLoad();
|
this.props.onWidgetLoad();
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
_propsEqual: function(objA, objB) {
|
_propsEqual: function(objA, objB) {
|
||||||
|
|
Loading…
Reference in a new issue