mirror of https://github.com/KDE/kasts.git
Fix scrollview details flickable
This commit is contained in:
parent
ec6e47aea7
commit
518dbf293e
|
@ -44,23 +44,25 @@ Kirigami.Page {
|
|||
height: Math.min(parent.height, Kirigami.Units.iconSizes.enormous * 3)
|
||||
}
|
||||
}
|
||||
Item {
|
||||
Flickable {
|
||||
anchors.fill: parent
|
||||
anchors.margins: 25
|
||||
clip: true
|
||||
contentHeight: text.height
|
||||
Controls.Label {
|
||||
width: parent.width - 40
|
||||
width: parent.width
|
||||
id: text
|
||||
text: audio.entry.content
|
||||
verticalAlignment: Text.AlignTop
|
||||
baseUrl: audio.entry.baseUrl
|
||||
textFormat: Text.RichText
|
||||
wrapMode: Text.WordWrap
|
||||
anchors.fill: parent
|
||||
anchors.margins: 20
|
||||
onLinkActivated: Qt.openUrlExternally(link)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Controls.PageIndicator {
|
||||
id: indicator
|
||||
|
|
Loading…
Reference in New Issue