summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Persson <henrik.persson@intunio.se>2016-09-19 17:04:43 +0200
committerHenrik Persson <henrik.persson@intunio.se>2016-09-23 08:27:56 +0000
commitb4bdb55e02769465f0dade26c085a12d881e819e (patch)
treee71f4c6fb252b3c49ad75bc47a8a22b4f6bcac2c
parent099ee2b6f5d13e2125937bbadfeddbd66ea07b82 (diff)
downloadneptune-ui-b4bdb55e02769465f0dade26c085a12d881e819e.tar.gz
Changed margins in Music library list to not cut the last item
Change-Id: Ic0eaaba217df7292bbb071d0c8a6b5f944b89db7 Reviewed-by: Nedim Hadzic <nedim.hadzic@pelagicore.com>
-rw-r--r--apps/com.pelagicore.music/LibraryList.qml13
1 files changed, 1 insertions, 12 deletions
diff --git a/apps/com.pelagicore.music/LibraryList.qml b/apps/com.pelagicore.music/LibraryList.qml
index e31ff82..58fdb51 100644
--- a/apps/com.pelagicore.music/LibraryList.qml
+++ b/apps/com.pelagicore.music/LibraryList.qml
@@ -63,6 +63,7 @@ UIElement {
id: listView
anchors.fill: parent
anchors.topMargin: 10
+ anchors.bottomMargin: 84
model: root.nowPlaying ? MusicProvider.nowPlaying.model : MusicProvider.musicLibrary.model
clip: true
highlightMoveDuration: 300
@@ -134,17 +135,5 @@ UIElement {
}
}
}
-
- Rectangle {
- width: parent.width
- height: 300
- anchors.bottom: parent.bottom
- gradient: Gradient {
- GradientStop { position: 0.0; color: "transparent" }
- GradientStop { position: 1.0; color: "black" }
- }
- }
}
-
}
-