mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
homescreen: Fix app drawer not interactable in empty space
Fixes https://invent.kde.org/plasma/plasma-mobile/-/issues/176, where spaces without app delegates are not able to be interacted with. All usages of QQC2.Control should be replaced by MobileShell.BaseItem, which prevents flicks from being stolen from parent flickables.
This commit is contained in:
parent
c16c64a555
commit
70ff2fd0e4
1 changed files with 2 additions and 2 deletions
|
|
@ -148,7 +148,7 @@ Item {
|
|||
spacing: 0
|
||||
|
||||
// drawer header
|
||||
Controls.Control {
|
||||
MobileShell.BaseItem {
|
||||
id: flickableHeader
|
||||
Layout.preferredHeight: root.headerHeight
|
||||
Layout.fillWidth: true
|
||||
|
|
@ -158,7 +158,7 @@ Item {
|
|||
}
|
||||
|
||||
// drawer body
|
||||
Controls.Control {
|
||||
MobileShell.BaseItem {
|
||||
id: flickableBody
|
||||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
|
|
|
|||
Loading…
Reference in a new issue