Skip to content

Commit

Permalink
qmlformat
Browse files Browse the repository at this point in the history
  • Loading branch information
rectalogic committed Jan 7, 2024
1 parent 95cbdda commit 911d2a8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/MediaFX/qml/ShaderEffectState.qml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ State {
required property VideoOutput videoOutput
default required property Component effect

PropertyChanges {
PropertyChanges {
layer.enabled: true
layer.effect: root.effect
target: root.videoOutput
Expand Down
6 changes: 4 additions & 2 deletions src/MediaFX/qml/effects/LumaMixer.qml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ MediaMixer {
target: root.luma
}
PropertyChanges {
x: root.x; y: root.y;
width: root.width; height: root.height;
x: root.x
y: root.y
width: root.width
height: root.height
layer.enabled: true
visible: false
target: root.luma
Expand Down
3 changes: 2 additions & 1 deletion tests/qml/animated.qml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ Item {
Rectangle {
id: rect

width: 50; height: 50;
width: 50
height: 50
color: "red"
}
}

0 comments on commit 911d2a8

Please sign in to comment.