diff options
Diffstat (limited to 'qml')
-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 |