Skip to content
Snippets Groups Projects
Commit 4667eaa2 authored by Darshan Jain's avatar Darshan Jain :speech_balloon: Committed by Jean-Baptiste Kempf
Browse files

qml: Rename scrolling text.qml

parent 664f2519
No related branches found
No related tags found
1 merge request!4892qml: Rename scrolling text.qml
Pipeline #452883 failed with stages
in 32 minutes and 39 seconds
......@@ -1080,7 +1080,7 @@ libqt_plugin_la_QML = \
widgets/qml/RoundButton.qml \
widgets/qml/ScaledImage.qml \
widgets/qml/ScanProgressBar.qml \
widgets/qml/ScrollingText.qml \
widgets/qml/TextAutoScroller.qml \
widgets/qml/SearchBox.qml \
widgets/qml/SliderExt.qml \
widgets/qml/SortControl.qml \
......
......@@ -165,7 +165,7 @@ T.ItemDelegate {
}
}
Widgets.ScrollingText {
Widgets.TextAutoScroller {
label: artistName
forceScroll: root.isCurrent || root._isHover
......
......@@ -328,7 +328,7 @@ FocusScope {
Component {
id: mrlColumn
Widgets.ScrollingText {
Widgets.TextAutoScroller {
id: itemText
property var rowModel: parent.rowModel
......
......@@ -149,7 +149,7 @@ Row {
width: Math.max(0, parent.width - x)
Widgets.ScrollingText {
Widgets.TextAutoScroller {
id: itemText
anchors.left: parent.left
......
......@@ -191,7 +191,7 @@
<file alias="NavigableCol.qml">widgets/qml/NavigableCol.qml</file>
<file alias="NavigableRow.qml">widgets/qml/NavigableRow.qml</file>
<file alias="ButtonExt.qml">widgets/qml/ButtonExt.qml</file>
<file alias="ScrollingText.qml">widgets/qml/ScrollingText.qml</file>
<file alias="TextAutoScroller.qml">widgets/qml/TextAutoScroller.qml</file>
<file alias="CaptionLabel.qml">widgets/qml/CaptionLabel.qml</file>
<file alias="IconLabel.qml">widgets/qml/IconLabel.qml</file>
<file alias="ListLabel.qml">widgets/qml/ListLabel.qml</file>
......
......@@ -295,7 +295,7 @@ T.ItemDelegate {
}
}
Widgets.ScrollingText {
Widgets.TextAutoScroller {
id: titleTextRect
label: titleLabel
......
......@@ -152,7 +152,7 @@ Item {
Layout.topMargin: VLCStyle.margin_xxsmall
Layout.bottomMargin: VLCStyle.margin_xxsmall
Widgets.ScrollingText {
Widgets.TextAutoScroller {
id: textRect
anchors.left: parent.left
......
......@@ -56,7 +56,7 @@ T.Control {
signal dropExited(var drag, bool before)
signal dropEvent(var drag, var drop, bool before)
property Component defaultDelegate: Widgets.ScrollingText {
property Component defaultDelegate: Widgets.TextAutoScroller {
id: defaultDelId
property var rowModel: parent.rowModel
property var colModel: parent.colModel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment