Hide maximise button in the sticker picker (#7488)
This commit is contained in:
parent
33b34d4169
commit
d00483be3e
2 changed files with 3 additions and 1 deletions
|
@ -77,6 +77,7 @@ interface IProps {
|
|||
// sets the pointer-events property on the iframe
|
||||
pointerEvents?: string;
|
||||
widgetPageTitle?: string;
|
||||
hideMaximiseButton?: boolean;
|
||||
}
|
||||
|
||||
interface IState {
|
||||
|
@ -541,7 +542,7 @@ export default class AppTile extends React.Component<IProps, IState> {
|
|||
);
|
||||
}
|
||||
let maxMinButton;
|
||||
if (SettingsStore.getValue("feature_maximised_widgets")) {
|
||||
if (SettingsStore.getValue("feature_maximised_widgets") && !this.props.hideMaximiseButton) {
|
||||
const widgetIsMaximised = WidgetLayoutStore.instance.
|
||||
isInContainer(this.props.room, this.props.app, Container.Center);
|
||||
maxMinButton = <AccessibleButton
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue