diff --git a/src/declarativeimports/plasmacomponents/qml/SectionScroller.qml b/src/declarativeimports/plasmacomponents/qml/SectionScroller.qml index 6f337efac..024fcf013 100644 --- a/src/declarativeimports/plasmacomponents/qml/SectionScroller.qml +++ b/src/declarativeimports/plasmacomponents/qml/SectionScroller.qml @@ -106,7 +106,11 @@ Item { onPositionChanged: { var section = Sections.closestSection(position/listView.height); if (section) { - sectionLabel.text = section; + if (listView.section.criteria == ViewSection.FirstCharacter) { + sectionLabel.text = section[0]; + } else { + sectionLabel.text = section; + } } }