1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-27 23:12:49 -05:00

Add DankModal and SystemLogo widgets

This commit is contained in:
bbedward
2025-07-22 21:12:19 -04:00
parent 5cf04aa941
commit f1833a81a0
19 changed files with 1038 additions and 1646 deletions

View File

@@ -18,6 +18,7 @@ ScrollView {
property int maxIconSize: 56
property int minIconSize: 32
property real wheelStepSize: 60
property bool hoverUpdatesSelection: true
signal itemClicked(int index, var modelData)
signal itemHovered(int index)
@@ -136,7 +137,9 @@ ScrollView {
cursorShape: Qt.PointingHandCursor
z: 10
onEntered: {
currentIndex = index;
if (hoverUpdatesSelection) {
currentIndex = index;
}
itemHovered(index);
}
onClicked: {