Skip to content

Commit 18def5e

Browse files
caimc12345618202781743
authored andcommitted
fix: prevent notification list overscrolling
Added boundsBehavior: Flickable.StopAtBounds to the notification list view to prevent overscrolling beyond the content boundaries. This improves the user experience by providing more natural scrolling behavior and preventing the list from bouncing when reaching the edges. Log: Improved notification list scrolling behavior Influence: 1. Test scrolling to the top and bottom of the notification list 2. Verify that list stops at boundaries without overscrolling 3. Check that normal scrolling functionality remains intact 4. Test with various numbers of notifications (empty, few, many) 5. Verify behavior on different screen sizes and resolutions PMS: BUG-324863
1 parent 1127204 commit 18def5e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

panels/notification/center/NotifyView.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ Control {
6161
snapMode: ListView.SnapToItem
6262
keyNavigationEnabled: false
6363
activeFocusOnTab: false
64+
boundsBehavior: Flickable.StopAtBounds
6465
ScrollBar.vertical: ScrollBar { }
6566
topMargin: 20
6667
leftMargin: NotifyStyle.leftMargin

0 commit comments

Comments
 (0)