fix: Community permissions and tokens view horizontal scrolling
This commit is contained in:
parent
d5d4bba374
commit
581ba8541b
|
@ -24,7 +24,6 @@ SplitView {
|
|||
|
||||
isEditState: isEditStateCheckBox.checked
|
||||
isPrivate: isPrivateCheckBox.checked
|
||||
isOwner: isOwnerCheckBox.checked
|
||||
permissionDuplicated: isPermissionDuplicatedCheckBox.checked
|
||||
permissionTypeLimitReached: isLimitReachedCheckBox.checked
|
||||
|
||||
|
@ -38,6 +37,7 @@ SplitView {
|
|||
readonly property string name: "Socks"
|
||||
readonly property string image: ModelsData.icons.socks
|
||||
readonly property string color: "red"
|
||||
readonly property string owner: isOwnerCheckBox.checked
|
||||
}
|
||||
|
||||
onCreatePermissionClicked: {
|
||||
|
|
|
@ -170,6 +170,8 @@ StatusScrollView {
|
|||
}
|
||||
|
||||
onPermissionTypeChanged: Qt.callLater(() => d.loadInitValues())
|
||||
contentWidth: mainLayout.width
|
||||
contentHeight: mainLayout.height
|
||||
|
||||
SequenceColumnLayout {
|
||||
id: mainLayout
|
||||
|
|
|
@ -59,6 +59,8 @@ StatusScrollView {
|
|||
}
|
||||
|
||||
padding: 0
|
||||
contentWidth: mainLayout.width
|
||||
contentHeight: mainLayout.height
|
||||
|
||||
Component.onCompleted: {
|
||||
if(root.isAssetView)
|
||||
|
|
|
@ -64,6 +64,8 @@ StatusScrollView {
|
|||
}
|
||||
|
||||
padding: 0
|
||||
contentWidth: mainLayout.width
|
||||
contentHeight: mainLayout.height
|
||||
|
||||
ColumnLayout {
|
||||
id: mainLayout
|
||||
|
|
Loading…
Reference in New Issue