** Changed in: ubuntu-ui-toolkit (Ubuntu)
     Assignee: (unassigned) => Zsombor Egri (zsombi)

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Importance: Undecided => Critical

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Importance: Critical => High

** Changed in: ubuntu-ui-toolkit (Ubuntu)
       Status: New => Triaged

-- 
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/1418981

Title:
  ActionSelectionPopover doesn't scroll when there are too many items to
  display

Status in ubuntu-ui-toolkit package in Ubuntu:
  Triaged

Bug description:
  Steps to reproduce

   1) Run the following QML on a phone:

  import QtQuick 2.0
  import Ubuntu.Components 1.1
  import Ubuntu.Components.Popups 1.0
  import Ubuntu.Components.ListItems 1.0 as ListItems

  MainView {

      useDeprecatedToolbar: false

      Component.onCompleted: {
          PopupUtils.open(menuPopover);
      }

  
      Component {
          id: menuPopover
          ActionSelectionPopover {
              id: menuList

              actions: ActionList {
                  Action {

                      text: "Test 2"
                  }
                  Action {
                      text: "Test 3"
                  }
                  Action {
                      text: "Test 4"
                  }
                  Action {
                      text: "Test 5"
                  }
                  Action {
                      text: "Test 6"
                  }
                  Action {
                      text: "Test 7"
                  }
                  Action {
                      text: "Test 8"
                  }
                  Action {
                      text: "Test 9"
                  }
                  Action {
                      text: "Test 10"
                  }
                  Action {
                      text: "Test 11"
                  }
                  Action {
                      text: "Test 12"
                  }
              }

              delegate: ListItems.Standard {
                  text: action.text
              }
          }
      }

  
  Expected result:

   Should be able to reach all items in the list

  Actual result:

   List overflows the edge of the screen and doesn't scroll, so "Test
  12" can't be reached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1418981/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to     : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp

Reply via email to