~mzanetti/unity8/fix-1648251

« back to all changes in this revision

Viewing changes to qml/Panel/Indicators/client/IndicatorsTree.qml

  • Committer: Michael Zanetti
  • Date: 2016-10-13 11:02:11 UTC
  • mfrom: (2525.1.132 unity8)
  • Revision ID: michael.zanetti@canonical.com-20161013110211-tj2gly2dxaqj5t2e
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import Ubuntu.Components 1.3
22
22
import Unity.Indicators 0.1 as Indicators
23
23
import ".."
 
24
import "../../../Components"
24
25
 
25
26
IndicatorBase {
26
27
    id: root
30
31
        model: root.menuModel
31
32
    }
32
33
 
33
 
    Flickable {
 
34
    TextArea {
34
35
        anchors.fill: parent
35
 
        contentHeight: all_data.height
36
 
        clip:true
37
 
        Text {
38
 
            id: all_data
39
 
            color: "white"
40
 
            text: printer.text
41
 
        }
 
36
        anchors.margins: units.gu(0.5)
 
37
        id: all_data
 
38
        text: printer.text
42
39
    }
43
40
}