Hide maximise button in the sticker picker (#7488)

This commit is contained in:
Šimon Brandner 2022-01-10 10:02:07 +01:00 committed by GitHub
parent 33b34d4169
commit d00483be3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -304,6 +304,7 @@ export default class Stickerpicker extends React.PureComponent<IProps, IState> {
showPopout={false}
handleMinimisePointerEvents={true}
userWidget={true}
hideMaximiseButton={true}
/>
</PersistedElement>
</div>