Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.7.4
-
Symbian Belle wk36
Description
Steps to reproduce
- Case 1
- open the sample app (TestFlickable.sis)
- tap on the first item i.e. 0 -> partial VKB opens
- while the VKB is open, try to scroll the list to the bottom
- Case 2
- open the sample app (TestFlickable.sis)
- scroll to the bottom and tap on the last item i.e. 29 -> partial VKB opens
- while the VKB is open, try to scroll the list to the top
Actual Result
- it's impossible to scroll to the top/bottom
Expected Result
- it's possible to scroll to the top/bottom
Source code
// main.qml import QtQuick 1.0 Flickable { id: flickableArea contentWidth: contentItem.childrenRect.width; contentHeight: contentItem.childrenRect.height flickableDirection: Flickable.VerticalFlick Column { Repeater { model: 30 Rectangle { width: flickableArea.width; height: 50 color: index % 2 ? "white" : "grey" TextInput { anchors.centerIn: parent text: index color: "black" font.pointSize: 16 } } } } }
// main.cpp // add this line in e.g. main() so that it uses the partial VKB QApplication::setAttribute(Qt::AA_S60DisablePartialScreenInputMode, false);