1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-14 22:42:34 +02:00

Fix missing capture

Remove broken PageIndicator in Qt 6.0.0
This commit is contained in:
Elias Steurer 2021-10-14 16:12:57 +02:00
parent 805d78c659
commit 68851bafea
2 changed files with 1 additions and 9 deletions

View File

@ -54,7 +54,7 @@ Item {
text: settingsBool.description
wrapMode: Text.WordWrap
linkColor: Material.color(Material.Orange)
onLinkActivated: Qt.openUrlExternally(link)
onLinkActivated: (link) => Qt.openUrlExternally(link)
color: Material.theme === Material.Light ? Qt.lighter(Material.foreground) : Qt.darker(Material.foreground)
font.family: ScreenPlay.settings.font
verticalAlignment: Text.AlignVCenter

View File

@ -208,12 +208,4 @@ Item {
}
}
PageIndicator {
id: indicator
count: view.count
currentIndex: view.currentIndex
anchors.bottom: view.bottom
anchors.horizontalCenter: parent.horizontalCenter
}
}