~mmcg069/totallywired/trunk

« back to all changes in this revision

Viewing changes to totallywired/qml/Widgets/SingleTrackExplorer.qml

  • Committer: Matthew McGowan
  • Date: 2013-04-20 08:47:54 UTC
  • Revision ID: matthew.joseph.mcgowan@gmail.com-20130420084754-c3jzh7vz4chb1ai8
small position bubble pointer fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
            anchors.top: parent.top
42
42
            anchors.horizontalCenter: parent.horizontalCenter
43
 
            anchors.topMargin: 12
 
43
            anchors.topMargin: 36
44
44
 
45
45
            BigAlbumArt {
46
46
                id: albumArt
73
73
 
74
74
                    onClicked: Collection.backend.display_image_chooser()
75
75
                }
76
 
 
77
 
                ListViewButton {
78
 
                    font.family: "TotallyWired"
79
 
                    label: "g"
80
 
                    radius: 6
81
 
                    baseColor: bg.color
82
 
 
83
 
                    onClicked: Metadata.rerun_art_loader()
84
 
                }
85
 
            }
86
 
 
 
76
            }
 
77
            TextLabel {
 
78
                id: bioTitle
 
79
                text: "<big>Biography</big>"
 
80
                anchors.left: parent.left
 
81
                anchors.top: metaEd.bottom
 
82
                anchors.topMargin: 36
 
83
                anchors.leftMargin: 12
 
84
                font.bold: true
 
85
                visible: bio.text != ""
 
86
            }
87
87
            TextLabel {
88
88
                id: bio
89
 
 
90
 
                anchors.top: metaEd.bottom
91
 
                anchors.topMargin: 36
92
 
 
 
89
                anchors.left: parent.left
 
90
                anchors.top: bioTitle.bottom
 
91
                anchors.topMargin: 12
 
92
                anchors.leftMargin: 12
93
93
                text: Metadata.bio
94
94
                textFormat: Text.RichText
95
95
                wrapMode: Text.Wrap
96
 
                width: parent.width
97
 
                
 
96
                width: parent.width - 24
98
97
                onLinkActivated: Utils.reveal_location(link)
99
98
            }
100
99