diff --git a/examples/buttons/buttons.qml b/examples/buttons/buttons.qml index ca77e321..b5945138 100644 --- a/examples/buttons/buttons.qml +++ b/examples/buttons/buttons.qml @@ -13,10 +13,10 @@ Qsk.Window color: "Beige" Qsk.Shortcut - { - sequence : "Ctrl+X" - onActivated: console.log( "Ctrl+X" ) - } + { + sequence : "Ctrl+X" + onActivated: console.log( "Ctrl+X" ) + } Qsk.LinearBox { diff --git a/examples/colorswitch/colorswitch.qml b/examples/colorswitch/colorswitch.qml index c3f3c237..401b37b6 100644 --- a/examples/colorswitch/colorswitch.qml +++ b/examples/colorswitch/colorswitch.qml @@ -11,7 +11,7 @@ Main Theme { accent: accentColors[ tabBar.currentIndex < 0 ? 0 : tabBar.currentIndex ] - skin: listBox.entries[ listBox.selectedRow ] + skin: listBox.entries[ listBox.selectedRow ] } Window