mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-23 12:08:53 +00:00
fix: fix lists of browser settings
This commit is contained in:
parent
c26e91ab35
commit
eb6c865e5b
@ -13,7 +13,6 @@ Item {
|
|||||||
|
|
||||||
Column {
|
Column {
|
||||||
id: generalColumn
|
id: generalColumn
|
||||||
spacing: Style.current.bigPadding
|
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
anchors.topMargin: 46
|
anchors.topMargin: 46
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
@ -21,22 +20,36 @@ Item {
|
|||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
anchors.rightMargin: contentMargin
|
anchors.rightMargin: contentMargin
|
||||||
|
|
||||||
StatusSectionMenuItem {
|
StatusSettingsLineButton {
|
||||||
label: qsTr("Network")
|
text: qsTr("Network")
|
||||||
info: utilsModel.getNetworkName()
|
currentValue: utilsModel.getNetworkName()
|
||||||
onClicked: networksModal.open()
|
onClicked: networksModal.open()
|
||||||
}
|
}
|
||||||
|
|
||||||
StatusSectionMenuItem {
|
StatusSettingsLineButton {
|
||||||
label: qsTr("Fleet")
|
text: qsTr("Fleet")
|
||||||
info: profileModel.fleets.fleet
|
currentValue: profileModel.fleets.fleet
|
||||||
onClicked: fleetModal.open()
|
onClicked: fleetModal.open()
|
||||||
}
|
}
|
||||||
|
|
||||||
Separator {}
|
Item {
|
||||||
|
id: spacer1
|
||||||
|
height: Style.current.bigPadding
|
||||||
|
width: parent.width
|
||||||
|
}
|
||||||
|
|
||||||
|
Separator {
|
||||||
|
anchors.topMargin: Style.current.bigPadding
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.leftMargin: -Style.current.padding
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.rightMargin: -Style.current.padding
|
||||||
|
}
|
||||||
|
|
||||||
StatusSectionHeadline {
|
StatusSectionHeadline {
|
||||||
text: qsTr("Experimental features")
|
text: qsTr("Experimental features")
|
||||||
|
topPadding: Style.current.bigPadding
|
||||||
|
bottomPadding: Style.current.padding
|
||||||
}
|
}
|
||||||
|
|
||||||
StatusSettingsLineButton {
|
StatusSettingsLineButton {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user