forked from Shinonome/dots-hyprland
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
|
|
}
|