blob: 7049c3b105a4b6e369879c90a3e0ca85b317f192 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import QtQuick 1.1
import Ubuntu.Components 0.1
import Ubuntu.Components.ListItems 0.1 as ListItem
ListItem.Standard {
property variant menu
anchors.fill: parent
text: menu.label
progression: true
onClicked: { loadMainMenu (menu.linkSubMenu) }
}
|