mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 14:43:09 +00:00
fix landscape favourites bar drag and drop, and cleanup folder fix drawer scrolling add settings
26 lines
549 B
QML
26 lines
549 B
QML
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls as Controls
|
|
import QtQuick.Effects
|
|
|
|
import org.kde.private.mobile.homescreen.folio 1.0 as Folio
|
|
|
|
AbstractDelegate {
|
|
id: root
|
|
name: folder.name
|
|
shadow: true
|
|
|
|
property Folio.FolioApplicationFolder folder
|
|
|
|
property bool appHoveredOver: false
|
|
|
|
contentItem: DelegateFolderIcon {
|
|
folder: root.folder
|
|
expandBackground: root.appHoveredOver
|
|
}
|
|
}
|
|
|
|
|