diff options
author | Papoteur <papoteur@mageia.org> | 2022-11-23 18:30:10 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2022-11-23 18:30:10 +0100 |
commit | 29123af4ad0e73a423350246f6fa7b0253034a6b (patch) | |
tree | 19cd28648521d99b76c249052275bec2259781c9 | |
parent | a688e822997b43f9d2bc0f64e52e55292915ae63 (diff) | |
download | mageiawelcome-29123af4ad0e73a423350246f6fa7b0253034a6b.tar mageiawelcome-29123af4ad0e73a423350246f6fa7b0253034a6b.tar.gz mageiawelcome-29123af4ad0e73a423350246f6fa7b0253034a6b.tar.bz2 mageiawelcome-29123af4ad0e73a423350246f6fa7b0253034a6b.tar.xz mageiawelcome-29123af4ad0e73a423350246f6fa7b0253034a6b.zip |
Fix commanline to include absolute path (mga#31169)
-rw-r--r-- | qml/Install.qml | 2 | ||||
-rw-r--r-- | qml/InstallSoftware.qml | 4 | ||||
-rw-r--r-- | qml/Sources.qml | 2 | ||||
-rw-r--r-- | qml/mw-ui.qml | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/qml/Install.qml b/qml/Install.qml index 238c22c..bd81596 100644 --- a/qml/Install.qml +++ b/qml/Install.qml @@ -29,7 +29,7 @@ Rectangle { MButton { anchors.horizontalCenter: parent.horizontalCenter objectName: "launch" - onMbuttonClicked: { launch.command(["draklive-install",])} + onMbuttonClicked: { launch.command(["/usr/bin/draklive-install",])} buttonText: qsTr("Launch installation") } diff --git a/qml/InstallSoftware.qml b/qml/InstallSoftware.qml index f3972c9..af90294 100644 --- a/qml/InstallSoftware.qml +++ b/qml/InstallSoftware.qml @@ -30,14 +30,14 @@ Rectangle { anchors.left: parent.left; anchors.leftMargin: 20; width: slideshow.width * .35 objectName: "launch" - onMbuttonClicked: { launch.command(["rpmdrake",])} + onMbuttonClicked: { launch.command(["/usr/bin/rpmdrake",])} buttonText: qsTr("RPMdrake")+" *" } MButton { anchors.left: parent.left; anchors.leftMargin: 20; width: slideshow.width * .35 objectName: "launch" - onMbuttonClicked: { launch.command(["dnfdragora",])} + onMbuttonClicked: { launch.command(["/usr/bin/dnfdragora",])} buttonText: qsTr("Dnfdragora") } Label { diff --git a/qml/Sources.qml b/qml/Sources.qml index 304df59..fa54e1d 100644 --- a/qml/Sources.qml +++ b/qml/Sources.qml @@ -194,7 +194,7 @@ If this computer will have access to the Internet, you can delete the <i>Local</ Layout.columnSpan: 2 Layout.alignment: Qt.AlignHCenter objectName: "launch" - onMbuttonClicked: { launch.command(["drakrpm-edit-media",])} + onMbuttonClicked: { launch.command(["/usr/bin/drakrpm-edit-media",])} buttonText: qsTr("Edit software sources")+" *" } } diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index f5bf51f..685ed5f 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -263,7 +263,7 @@ Rectangle { height: Qt.application.font.pixelSize * 1.3 objectName: "launch" onClicked: { - launch.command(["gurpmi",name,repo,])} + launch.command(["/usr/bin/gurpmi",name,repo,])} style: ButtonStyle { label: Label { horizontalAlignment: TextInput.AlignHCenter |