mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-26 05:17:05 +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
|
||||
}
|
||||
handle: Rectangle {
|
||||
implicitWidth: 12
|
||||
implicitHeight: 12
|
||||
implicitWidth: d.isVertical ? control.width : 12
|
||||
implicitHeight: d.isVertical ? 12 : control.height
|
||||
clip: true
|
||||
color: {
|
||||
if(SplitHandle.pressed){
|
||||
|
Loading…
Reference in New Issue
Block a user