ubuntu-touch-coreapps-reviewers team mailing list archive
-
ubuntu-touch-coreapps-reviewers team
-
Mailing list archive
-
Message #04646
[Bug 1395118] Re: ActionSelectionPopover does not handle the 'visible' property of actions properly
Fix committed into lp:ubuntu-filemanager-app at revision 458, scheduled
for release in ubuntu-filemanager-app, milestone alpha-1
** Changed in: ubuntu-filemanager-app
Status: In Progress => Fix Committed
--
You received this bug notification because you are a member of Ubuntu
File Manager Developers, which is subscribed to Ubuntu File Manager App.
Matching subscriptions: File Manager App Bugmail
https://bugs.launchpad.net/bugs/1395118
Title:
ActionSelectionPopover does not handle the 'visible' property of
actions properly
Status in Canonical System Image:
Fix Released
Status in Ubuntu File Manager App:
Fix Committed
Status in ubuntu-ui-toolkit package in Ubuntu:
Fix Released
Status in ubuntu-ui-toolkit source package in Vivid:
New
Status in ubuntu-ui-toolkit package in Ubuntu RTM:
Fix Released
Bug description:
When setting the 'visible' property of an action in an ActionList of
an ActionSelectionPopover to false, the delegate will not be hidden
but instead be shown at the top of the list behind the first visible
delegate. (Check out the screenshot.)
Demo code (containing an outcommented workaround):
import QtQuick 2.3
import Ubuntu.Components 1.1
import Ubuntu.Components.Popups 1.0
import Ubuntu.Components.ListItems 1.0
MainView {
width: units.gu(50)
height: units.gu(75)
Page {
title: i18n.tr("ActionSelectionPopover Fix")
Button {
id: button
width: parent.width
text: i18n.tr("Show popover")
onClicked: {
PopupUtils.open(actionSelectionPopoverComponent, button)
}
}
Component {
id: actionSelectionPopoverComponent
ActionSelectionPopover {
actions: ActionList {
Action {
text: "Action one"
}
Action {
text: "Action two"
}
Action {
text: "Hidden action"
visible: false
}
}
// Uncomment the following for a temporary workaround:
// delegate: Empty {
// id: listItem
// Label {
// text: listItem.text
// anchors {
// verticalCenter: parent.verticalCenter
// horizontalCenter: parent.horizontalCenter
// }
// wrapMode: Text.Wrap
// color: Theme.palette.normal.overlayText
// }
// /*! \internal */
// onTriggered: popover.hide()
// visible: enabled && ((action === undefined) || action.visible)
// height: visible ? implicitHeight : 0
// }
}
}
}
}
To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1395118/+subscriptions