mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-29 22:55:56 +08:00
Merge pull request #429 from maplefater/patch-2
fix(FluSplitLayout): solve binding loop on qt 6.6.0
This commit is contained in:
commit
c50583d66a
@ -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
Block a user