dev: fix deprecated window width & height
This commit is contained in:
parent
44953ee25f
commit
6b1d5aaf98
2 changed files with 4 additions and 4 deletions
|
|
@ -16,8 +16,8 @@ Variants {
|
|||
name: "bar"
|
||||
|
||||
exclusiveZone: BarConfig.sizes.exclusiveZone
|
||||
width: BarConfig.vertical ? BarConfig.sizes.totalHeight : -1
|
||||
height: BarConfig.vertical ? -1 : BarConfig.sizes.totalHeight
|
||||
implicitWidth: BarConfig.vertical ? BarConfig.sizes.totalHeight : -1
|
||||
implicitHeight: BarConfig.vertical ? -1 : BarConfig.sizes.totalHeight
|
||||
|
||||
anchors.top: true
|
||||
anchors.left: true
|
||||
|
|
|
|||
|
|
@ -28,8 +28,8 @@ Scope {
|
|||
component ExclusionZone: StyledWindow {
|
||||
screen: root.screen
|
||||
name: "border-exclusion"
|
||||
width: BorderConfig.thickness
|
||||
height: BorderConfig.thickness
|
||||
implicitWidth: BorderConfig.thickness
|
||||
implicitHeight: BorderConfig.thickness
|
||||
|
||||
anchors.top: true
|
||||
anchors.left: true
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue