touch-packages team mailing list archive
-
touch-packages team
-
Mailing list archive
-
Message #97787
[Bug 1486008] Re: leading actions width is too small making it very difficult to press
I can confirm that when using the package uitk on ubuntu rc-proposed
using the steps provided by Nekhelesh that I can reproduce the bug.
Therefore I have set this bug to confirmed.
This bug is also now blocking the music-app from migrating to the new
listitems.
$ system-image-cli -i
current build number: 94
device name: mako
channel: ubuntu-touch/rc-proposed/bq-aquaris.en
last update: 2015-08-20 12:50:24
version version: 94
version ubuntu: 20150819
version device: 20150819
version custom: mako-1.1
** Changed in: ubuntu-ui-toolkit (Ubuntu)
Status: New => Confirmed
--
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1486008
Title:
leading actions width is too small making it very difficult to press
on Nexus 4 (mako)
Status in Ubuntu UX:
Incomplete
Status in ubuntu-ui-toolkit package in Ubuntu:
Confirmed
Bug description:
Since a recent update to the ListItem leading actions in
Ubuntu.Components 1.2, where the width of the action was clamped, the
width is too small to press comfortably on a phone resulting in it
missing 9 out of 10 tries. It affects the usability of the action and
may be become a release blocker for apps that have recently switched
over to the new list items.
Sample App
import QtQuick 2.4
import Ubuntu.Components 1.2
MainView {
applicationName: "testdelete.nik90"
width: units.gu(100)
height: units.gu(75)
Page {
title: "Swipe to Delete"
ListItem {
id: listItem
anchors.top: parent.top
Label {
text: "Swipe me right to delete this listitem"
wrapMode: Text.WordWrap
anchors { left: parent.left; leftMargin: units.gu(2); right: parent.right; verticalCenter: parent.verticalCenter }
}
leadingActions: ListItemActions {
actions: [
Action {
iconName: "delete"
onTriggered: listItem.destroy()
}
]
}
}
}
}
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1486008/+subscriptions
References