diff --git a/examples/Gallery.qml b/examples/Gallery.qml
index 3127819043adc4178b9348b6bc0adff9011981e2..22b9d7dfd03587f8345ba408468f870a62f7b735 100644
--- a/examples/Gallery.qml
+++ b/examples/Gallery.qml
@@ -273,14 +273,12 @@ Rectangle {
                                 width: 96
                                 tooltip:"This is an interesting tool tip"
                                 KeyNavigation.tab: button2
-                                KeyNavigation.backtab: frame.tabBar
                             }
                             Button {
                                 id:button2
                                 text:"Button 2"
                                 width:96
                                 KeyNavigation.tab: combo
-                                KeyNavigation.backtab: button1
                             }
                         }
                         ComboBox {
@@ -288,7 +286,6 @@ Rectangle {
                             model: choices;
                             width: parent.width;
                             KeyNavigation.tab: t1
-                            KeyNavigation.backtab: button2
                         }
                         Row {
                             spacing: 8
@@ -300,19 +297,16 @@ Rectangle {
                                 value: -20
 
                                 KeyNavigation.tab: t2
-                                KeyNavigation.backtab: combo
                             }
                             SpinBox {
                                 id: t2
                                 width:97
                                 KeyNavigation.tab: t3
-                                KeyNavigation.backtab: t1
                             }
                         }
                         TextField {
                             id: t3
                             KeyNavigation.tab: slider
-                            KeyNavigation.backtab: t2
                             placeholderText: "This is a placeholder for a TextField"
                         }
                         ProgressBar {
@@ -327,7 +321,6 @@ Rectangle {
                             value: 0.5
                             tickmarksEnabled: tickmarkCheck.checked
                             KeyNavigation.tab: frameCheckbox
-                            KeyNavigation.backtab: t3
                         }
                     }
                     Column {
@@ -345,14 +338,12 @@ Rectangle {
                                     text: "Text frame"
                                     checked: true
                                     KeyNavigation.tab: tickmarkCheck
-                                    KeyNavigation.backtab: slider
                                 }
                                 CheckBox {
                                     id: tickmarkCheck
                                     text: "Tickmarks"
                                     checked: true
                                     KeyNavigation.tab: r1
-                                    KeyNavigation.backtab: frameCheckbox
                                 }
                             }
                         }
@@ -368,14 +359,12 @@ Rectangle {
                                     id: r1
                                     text: "North"
                                     KeyNavigation.tab: r2
-                                    KeyNavigation.backtab: tickmarkCheck
                                     checked: true
                                 }
                                 RadioButton {
                                     id: r2
                                     text: "South"
                                     KeyNavigation.tab: area
-                                    KeyNavigation.backtab: r1
                                 }
                             }
                         }