~artmello/ubuntu-system-settings/category-list-view

« back to all changes in this revision

Viewing changes to plugins/language/PageHardwareKeyboard.qml

  • Committer: Bileto Bot
  • Author(s): Jonas G. Drange
  • Date: 2017-01-12 12:48:46 UTC
  • mfrom: (1741.1.28 apl)
  • Revision ID: ci-train-bot@canonical.com-20170112124846-0rsokgs0jy7j9rqv
migrates uss to apl

Approved by: Ken VanDine, system-apps-ci-bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    objectName: "hwKbdPage"
32
32
 
33
33
    title: i18n.tr("Hardware keyboard")
 
34
    flickable: scrollWidget
34
35
 
35
36
    Component {
36
37
        id: keyboardLayouts
43
44
    }
44
45
 
45
46
    Flickable {
 
47
        id: scrollWidget
46
48
        anchors.fill: parent
47
49
        contentHeight: contentItem.childrenRect.height
48
50
        boundsBehavior: contentHeight > root.height ?
64
66
                       plugin.keyboardLayoutsModel.subset.length
65
67
                progression: true
66
68
 
67
 
                onClicked: pageStack.push(Qt.resolvedUrl("KeyboardLayouts.qml"), {
68
 
                    plugin: plugin,
69
 
                    currentLayoutsDraggable: true
70
 
                })
 
69
                onClicked: pageStack.addPageToNextColumn(root,
 
70
                    Qt.resolvedUrl("KeyboardLayouts.qml"), {
 
71
                        plugin: plugin,
 
72
                        currentLayoutsDraggable: true
 
73
                    }
 
74
                )
71
75
            }
72
76
        }
73
77
    }