mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
don't use a mouseeventlistener
This commit is contained in:
parent
563e306225
commit
dc12516834
1 changed files with 6 additions and 6 deletions
|
|
@ -30,7 +30,7 @@ import org.kde.kquickcontrolsaddons 2.0
|
||||||
import MeeGo.QOfono 0.2
|
import MeeGo.QOfono 0.2
|
||||||
import "../components"
|
import "../components"
|
||||||
|
|
||||||
MouseEventListener {
|
Item {
|
||||||
id: homescreen
|
id: homescreen
|
||||||
width: 1080
|
width: 1080
|
||||||
height: 1920
|
height: 1920
|
||||||
|
|
@ -89,10 +89,6 @@ MouseEventListener {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onPressAndHold: {
|
|
||||||
// containment.action("configure").trigger();
|
|
||||||
}
|
|
||||||
|
|
||||||
OfonoManager {
|
OfonoManager {
|
||||||
id: ofonoManager
|
id: ofonoManager
|
||||||
onAvailableChanged: {
|
onAvailableChanged: {
|
||||||
|
|
@ -433,11 +429,15 @@ MouseEventListener {
|
||||||
model: appListModel
|
model: appListModel
|
||||||
snapMode: GridView.SnapToRow
|
snapMode: GridView.SnapToRow
|
||||||
clip: true
|
clip: true
|
||||||
header: Item {
|
header: MouseArea {
|
||||||
z: 999
|
z: 999
|
||||||
width: homescreen.width
|
width: homescreen.width
|
||||||
height: homescreen.height
|
height: homescreen.height
|
||||||
|
|
||||||
|
onPressAndHold: {
|
||||||
|
containment.action("configure").trigger();
|
||||||
|
}
|
||||||
|
|
||||||
PlasmaComponents.Label {
|
PlasmaComponents.Label {
|
||||||
id: bigClock
|
id: bigClock
|
||||||
anchors {
|
anchors {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue