mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-02 09:46:38 +00:00
Fix/issue 10905 (#10930)
This commit is contained in:
parent
2a253be291
commit
f86608287c
@ -36,7 +36,7 @@ StatusSectionLayout {
|
||||
property bool requirementsMet: true
|
||||
property bool isJoinRequestRejected: false
|
||||
property bool requiresRequest: false
|
||||
property alias loginType: overlayPannel.loginType
|
||||
property alias loginType: overlayPanel.loginType
|
||||
|
||||
property var communityHoldingsModel
|
||||
property var viewOnlyHoldingsModel
|
||||
@ -167,7 +167,7 @@ StatusSectionLayout {
|
||||
// Blur background:
|
||||
Item {
|
||||
Layout.fillWidth: true
|
||||
Layout.preferredHeight: Math.min(centralPanelData.implicitHeight, parent.height - overlayPannel.implicitHeight)
|
||||
Layout.preferredHeight: Math.min(centralPanelData.implicitHeight, parent.height - overlayPanel.implicitHeight)
|
||||
|
||||
ColumnLayout {
|
||||
id: centralPanelData
|
||||
@ -249,8 +249,14 @@ StatusSectionLayout {
|
||||
anchors.fill: parent
|
||||
padding: 0
|
||||
|
||||
Item {
|
||||
implicitHeight: Math.max(overlayPanel.implicitHeight, panelBase.height)
|
||||
implicitWidth: Math.max(overlayPanel.implicitWidth, panelBase.width)
|
||||
|
||||
JoinPermissionsOverlayPanel {
|
||||
id: overlayPannel
|
||||
id: overlayPanel
|
||||
|
||||
anchors.centerIn: parent
|
||||
|
||||
topPadding: 2 * bottomPadding
|
||||
joinCommunity: root.joinCommunity
|
||||
@ -274,6 +280,7 @@ StatusSectionLayout {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
showRightPanel: false
|
||||
|
||||
Component {
|
||||
|
@ -72,6 +72,7 @@ Control {
|
||||
|
||||
visible: root.bio
|
||||
padding: 0
|
||||
topPadding: Style.current.halfPadding
|
||||
rightPadding: ScrollBar.vertical.visible ? 16 : 0
|
||||
|
||||
Layout.maximumHeight: 108
|
||||
|
Loading…
x
Reference in New Issue
Block a user