~aacid/unity8/desktopRotatedCamera

« back to all changes in this revision

Viewing changes to qml/Dash/Filters/FilterOptionSelector.qml

  • Committer: Albert Astals Cid
  • Date: 2016-06-02 07:43:13 UTC
  • mfrom: (2039.198.42 unity8)
  • Revision ID: albert.astals@canonical.com-20160602074313-qycavrlys0yftjfd
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
    implicitHeight: expandingItem.height
27
27
 
 
28
    signal filterSelected()
 
29
 
28
30
    ListItems.Expandable {
29
31
        id: expandingItem
30
32
        objectName: "expandingItem"
67
69
            width: parent.width
68
70
            Repeater {
69
71
                model: widgetData.options
 
72
                objectName: "optionsRepeater"
70
73
 
71
74
                ListItems.Standard {
72
75
                    text: label
83
86
 
84
87
                    onClicked: {
85
88
                        widgetData.options.setChecked(index, !checked);
 
89
                        root.filterSelected()
86
90
                    }
87
91
                }
88
92
            }