mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-07 07:49:28 -05:00
13 lines
315 B
QML
13 lines
315 B
QML
import QtQuick
|
|
|
|
RectangularContainerShape {
|
|
property bool vertical: false
|
|
property real startRadius
|
|
property real endRadius
|
|
|
|
topLeftRadius: startRadius
|
|
topRightRadius: vertical ? startRadius : endRadius
|
|
bottomLeftRadius: vertical ? endRadius : startRadius
|
|
bottomRightRadius: endRadius
|
|
}
|