[app] Use new mouse icons

This commit is contained in:
Nicolas Fella 2018-11-22 01:26:17 +01:00
parent 38fed324bf
commit 00111e41e1

View file

@ -68,14 +68,17 @@ Kirigami.Page
Button { Button {
Layout.fillWidth: true Layout.fillWidth: true
icon.name: "input-mouse-click-left"
onClicked: mousepad.pluginInterface.sendCommand("singleclick", true); onClicked: mousepad.pluginInterface.sendCommand("singleclick", true);
} }
Button { Button {
Layout.fillWidth: true Layout.fillWidth: true
icon.name: "input-mouse-click-middle"
onClicked: mousepad.pluginInterface.sendCommand("middleclick", true); onClicked: mousepad.pluginInterface.sendCommand("middleclick", true);
} }
Button { Button {
Layout.fillWidth: true Layout.fillWidth: true
icon.name: "input-mouse-click-right"
onClicked: mousepad.pluginInterface.sendCommand("rightclick", true); onClicked: mousepad.pluginInterface.sendCommand("rightclick", true);
} }
} }