mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
Hide maximise button in the sticker picker (#7488)
This commit is contained in:
parent
33b34d4169
commit
d00483be3e
@ -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
|
||||
|
@ -304,6 +304,7 @@ export default class Stickerpicker extends React.PureComponent<IProps, IState> {
|
||||
showPopout={false}
|
||||
handleMinimisePointerEvents={true}
|
||||
userWidget={true}
|
||||
hideMaximiseButton={true}
|
||||
/>
|
||||
</PersistedElement>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user