diff options
Diffstat (limited to 'metawatch/qml/com')
| -rw-r--r-- | metawatch/qml/com/javispedro/sowatch/metawatch/MWListView.qml | 8 | ||||
| -rw-r--r-- | metawatch/qml/com/javispedro/sowatch/metawatch/MWTitle.qml | 1 | 
2 files changed, 8 insertions, 1 deletions
| diff --git a/metawatch/qml/com/javispedro/sowatch/metawatch/MWListView.qml b/metawatch/qml/com/javispedro/sowatch/metawatch/MWListView.qml index 3e445fb..0fb0755 100644 --- a/metawatch/qml/com/javispedro/sowatch/metawatch/MWListView.qml +++ b/metawatch/qml/com/javispedro/sowatch/metawatch/MWListView.qml @@ -49,7 +49,13 @@ ListView {  			}  			if (currentItemTop <= 0) {  				// If the previous item now is still not visible, scroll -				contentY -= 96/3; +				var newContentY = contentY - 96/3; + +				if (newContentY < 0) { +					contentY = 0; // Never overscroll. +				} else { +					contentY = newContentY; +				}  			}  		}  	} diff --git a/metawatch/qml/com/javispedro/sowatch/metawatch/MWTitle.qml b/metawatch/qml/com/javispedro/sowatch/metawatch/MWTitle.qml index 8aa494c..2c8b837 100644 --- a/metawatch/qml/com/javispedro/sowatch/metawatch/MWTitle.qml +++ b/metawatch/qml/com/javispedro/sowatch/metawatch/MWTitle.qml @@ -8,6 +8,7 @@ Rectangle {  	Row {  		anchors.fill: parent +		anchors.margins: 1  		Text {  			id: label  			font.bold: true | 
