summaryrefslogtreecommitdiffstats
path: root/qml/FullControls.qml
diff options
context:
space:
mode:
authorYoann Lopes <yoann.lopes@nokia.com>2011-11-01 12:20:18 +0100
committerYoann Lopes <yoann.lopes@nokia.com>2011-11-01 12:20:18 +0100
commitd7bd0a8b8d4656e23cb8ce50a5532220b3784d0d (patch)
tree0f6157cab1c9f2708ff31457a9bce14d4705393f /qml/FullControls.qml
parent5166e188834dd6006a176ab556bf49ece7920c37 (diff)
Added a fast-scroller for list views.
Diffstat (limited to 'qml/FullControls.qml')
-rw-r--r--qml/FullControls.qml16
1 files changed, 9 insertions, 7 deletions
diff --git a/qml/FullControls.qml b/qml/FullControls.qml
index f0346da..16735ec 100644
--- a/qml/FullControls.qml
+++ b/qml/FullControls.qml
@@ -5,22 +5,22 @@
** Contact: Yoann Lopes (yoann.lopes@nokia.com)
**
** This file is part of the MeeSpot project.
-**
+**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
-**
+**
** Redistributions of source code must retain the above copyright notice,
** this list of conditions and the following disclaimer.
-**
+**
** Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
-**
+**
** Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the names of its
** contributors may be used to endorse or promote products derived from
** this software without specific prior written permission.
-**
+**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
@@ -287,9 +287,11 @@ Column {
}
}
- ScrollDecorator {
+ Scrollbar {
+ anchors.topMargin: -UI.MARGIN_XLARGE
anchors.rightMargin: -UI.MARGIN_XLARGE
- flickableItem: queueList
+ scrollDecoratorRightMargin: -UI.MARGIN_XLARGE
+ listView: queueList
}
}
}