Compare commits
2 Commits
93f73b034d
...
c50583d66a
Author | SHA1 | Date |
---|---|---|
|
c50583d66a | |
|
dbe70f8212 |
|
@ -10,8 +10,8 @@ SplitView {
|
||||||
property bool isVertical: control.orientation === Qt.Vertical
|
property bool isVertical: control.orientation === Qt.Vertical
|
||||||
}
|
}
|
||||||
handle: Rectangle {
|
handle: Rectangle {
|
||||||
implicitWidth: 12
|
implicitWidth: d.isVertical ? control.width : 12
|
||||||
implicitHeight: 12
|
implicitHeight: d.isVertical ? 12 : control.height
|
||||||
clip: true
|
clip: true
|
||||||
color: {
|
color: {
|
||||||
if(SplitHandle.pressed){
|
if(SplitHandle.pressed){
|
||||||
|
|
Loading…
Reference in New Issue