Don't highlight entries in device and plugin list
This commit is contained in:
parent
f58a99e388
commit
f7296dfcf5
2 changed files with 3 additions and 1 deletions
|
@ -82,6 +82,7 @@ Kirigami.Page
|
||||||
delegate: Kirigami.BasicListItem {
|
delegate: Kirigami.BasicListItem {
|
||||||
label: name
|
label: name
|
||||||
icon: iconName
|
icon: iconName
|
||||||
|
highlighted: false
|
||||||
iconColor: "transparent"
|
iconColor: "transparent"
|
||||||
visible: loaded
|
visible: loaded
|
||||||
onClicked: onClick()
|
onClicked: onClick()
|
||||||
|
@ -173,7 +174,7 @@ Kirigami.Page
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
text: i18n("Reject")
|
text: i18n("Reject")
|
||||||
icon.name:"dialog-cancel"
|
icon.name:"dialog-cancel"
|
||||||
onClicked: deviceView.currentDevice.rejectPairing()
|
onClicked: deviceView.currentDevice.rejectPairing()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,6 +68,7 @@ Kirigami.ScrollablePage
|
||||||
icon: iconName
|
icon: iconName
|
||||||
iconColor: "transparent"
|
iconColor: "transparent"
|
||||||
label: display + "\n" + toolTip
|
label: display + "\n" + toolTip
|
||||||
|
highlighted: false
|
||||||
onClicked: {
|
onClicked: {
|
||||||
pageStack.push(
|
pageStack.push(
|
||||||
deviceComp,
|
deviceComp,
|
||||||
|
|
Loading…
Reference in a new issue