1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-13 01:02:18 -04:00

frame(ConnectedMode): Wire up Notifications

This commit is contained in:
purian23
2026-04-11 22:09:45 -04:00
parent b49730a01b
commit cc858c5557
5 changed files with 504 additions and 131 deletions

View File

@@ -114,7 +114,7 @@ Item {
}
radiusX: root._cr
radiusY: root._cr
direction: PathArc.Counterclockwise
direction: root.barSide === "bottom" ? PathArc.Clockwise : PathArc.Counterclockwise
}
// Body edge to first convex corner
@@ -169,7 +169,7 @@ Item {
}
radiusX: root._sr
radiusY: root._sr
direction: PathArc.Clockwise
direction: root.barSide === "bottom" ? PathArc.Counterclockwise : PathArc.Clockwise
}
// Far edge
@@ -224,7 +224,7 @@ Item {
}
radiusX: root._sr
radiusY: root._sr
direction: PathArc.Clockwise
direction: root.barSide === "bottom" ? PathArc.Counterclockwise : PathArc.Clockwise
}
// Body edge to second concave arc
@@ -279,7 +279,7 @@ Item {
}
radiusX: root._cr
radiusY: root._cr
direction: PathArc.Counterclockwise
direction: root.barSide === "bottom" ? PathArc.Clockwise : PathArc.Counterclockwise
}
}
}