mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23: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 "../components"
|
||||
|
||||
MouseEventListener {
|
||||
Item {
|
||||
id: homescreen
|
||||
width: 1080
|
||||
height: 1920
|
||||
|
|
@ -89,10 +89,6 @@ MouseEventListener {
|
|||
}
|
||||
}
|
||||
|
||||
onPressAndHold: {
|
||||
// containment.action("configure").trigger();
|
||||
}
|
||||
|
||||
OfonoManager {
|
||||
id: ofonoManager
|
||||
onAvailableChanged: {
|
||||
|
|
@ -433,11 +429,15 @@ MouseEventListener {
|
|||
model: appListModel
|
||||
snapMode: GridView.SnapToRow
|
||||
clip: true
|
||||
header: Item {
|
||||
header: MouseArea {
|
||||
z: 999
|
||||
width: homescreen.width
|
||||
height: homescreen.height
|
||||
|
||||
onPressAndHold: {
|
||||
containment.action("configure").trigger();
|
||||
}
|
||||
|
||||
PlasmaComponents.Label {
|
||||
id: bigClock
|
||||
anchors {
|
||||
|
|
|
|||
Loading…
Reference in a new issue