summaryrefslogtreecommitdiffstats
path: root/qml/Sources.qml
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2023-01-29 12:04:01 +0100
committerPapoteur <papoteur@mageia.org>2023-01-29 12:04:01 +0100
commit209a00e5e573d15745794b278a4229ca9a6e72f4 (patch)
tree443d221463a9d0bc696e655fa7e61df3addff973 /qml/Sources.qml
parent231622db3a39a23757ab0d3a3861a52e740a9716 (diff)
downloadmageiawelcome-209a00e5e573d15745794b278a4229ca9a6e72f4.tar
mageiawelcome-209a00e5e573d15745794b278a4229ca9a6e72f4.tar.gz
mageiawelcome-209a00e5e573d15745794b278a4229ca9a6e72f4.tar.bz2
mageiawelcome-209a00e5e573d15745794b278a4229ca9a6e72f4.tar.xz
mageiawelcome-209a00e5e573d15745794b278a4229ca9a6e72f4.zip
Add button to configure network before sources when network is offline.
Diffstat (limited to 'qml/Sources.qml')
-rw-r--r--qml/Sources.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/qml/Sources.qml b/qml/Sources.qml
index fa54e1d..a43b6a4 100644
--- a/qml/Sources.qml
+++ b/qml/Sources.qml
@@ -191,6 +191,14 @@ If this computer will have access to the Internet, you can delete the <i>Local</
Layout.margins: 10
}
MButton {
+ visible: networkstate.isOffLine()
+ Layout.columnSpan: 2
+ Layout.alignment: Qt.AlignHCenter
+ objectName: "launch"
+ onMbuttonClicked: { launch.command(["/usr/bin/draknetcenter",])}
+ buttonText: qsTr("Configure network")
+ }
+ MButton {
Layout.columnSpan: 2
Layout.alignment: Qt.AlignHCenter
objectName: "launch"