[Touch-packages] [Bug 1461729] Re: calling pageStack.pop() in a loop pops too much

2015-07-10 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-ui-toolkit -
1.3.1549+15.10.20150710.1-0ubuntu1

---
ubuntu-ui-toolkit (1.3.1549+15.10.20150710.1-0ubuntu1) wily; urgency=medium

  [ Timo Jyrinki ]
  * arch specific deps (LP: #1473035) (LP: #1473035)

 -- CI Train Bot ci-train-...@canonical.com  Fri, 10 Jul 2015 06:31:57
+

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: Fix Committed = Fix Released

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

Title:
  calling pageStack.pop() in a loop pops too much

Status in ubuntu-ui-toolkit package in Ubuntu:
  Fix Released

Bug description:
  In Ubuntu.Components 1.1 this was working fine to pop everything from
  a PageStack except the first page:

  while (pageStack.depth  1) {
pageStack.pop()
  }

  
  In Ubuntu.Components 1.2 this does no longer work, because it pops the first 
page too. My suspicion is that it is related to the animation in the header 
which updates the depth asynchronously.

  See the attached file as a standalone example to reproduce. While it
  works when importing 1.1, it breaks when importing 1.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1461729/+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


[Touch-packages] [Bug 1461729] Re: calling pageStack.pop() in a loop pops too much

2015-07-08 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/wily-proposed/ubuntu-ui-toolkit

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

Title:
  calling pageStack.pop() in a loop pops too much

Status in ubuntu-ui-toolkit package in Ubuntu:
  Fix Committed

Bug description:
  In Ubuntu.Components 1.1 this was working fine to pop everything from
  a PageStack except the first page:

  while (pageStack.depth  1) {
pageStack.pop()
  }

  
  In Ubuntu.Components 1.2 this does no longer work, because it pops the first 
page too. My suspicion is that it is related to the animation in the header 
which updates the depth asynchronously.

  See the attached file as a standalone example to reproduce. While it
  works when importing 1.1, it breaks when importing 1.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1461729/+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


[Touch-packages] [Bug 1461729] Re: calling pageStack.pop() in a loop pops too much

2015-07-02 Thread Tim Peeters
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: Confirmed = Fix Committed

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

Title:
  calling pageStack.pop() in a loop pops too much

Status in ubuntu-ui-toolkit package in Ubuntu:
  Fix Committed

Bug description:
  In Ubuntu.Components 1.1 this was working fine to pop everything from
  a PageStack except the first page:

  while (pageStack.depth  1) {
pageStack.pop()
  }

  
  In Ubuntu.Components 1.2 this does no longer work, because it pops the first 
page too. My suspicion is that it is related to the animation in the header 
which updates the depth asynchronously.

  See the attached file as a standalone example to reproduce. While it
  works when importing 1.1, it breaks when importing 1.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1461729/+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


[Touch-packages] [Bug 1461729] Re: calling pageStack.pop() in a loop pops too much

2015-06-06 Thread Tim Peeters
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: New = Confirmed

** Changed in: ubuntu-ui-toolkit (Ubuntu)
 Assignee: (unassigned) = Tim Peeters (tpeeters)

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

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

Title:
  calling pageStack.pop() in a loop pops too much

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

Bug description:
  In Ubuntu.Components 1.1 this was working fine to pop everything from
  a PageStack except the first page:

  while (pageStack.depth  1) {
pageStack.pop()
  }

  
  In Ubuntu.Components 1.2 this does no longer work, because it pops the first 
page too. My suspicion is that it is related to the animation in the header 
which updates the depth asynchronously.

  See the attached file as a standalone example to reproduce. While it
  works when importing 1.1, it breaks when importing 1.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1461729/+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


[Touch-packages] [Bug 1461729] Re: calling pageStack.pop() in a loop pops too much

2015-06-06 Thread Tim Peeters
Pop() is called repeatedly before the previous page is actually popped,
because of the animation.

I think we need to disable all animations, or add a pop(bool immediate)
function, or completely make the visuals and pagestack asynchronous,
including copying of the Page in memory to avoid showing a Page (that is
animating out) when it was already popped from the stack and removed
from memory.

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

Title:
  calling pageStack.pop() in a loop pops too much

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

Bug description:
  In Ubuntu.Components 1.1 this was working fine to pop everything from
  a PageStack except the first page:

  while (pageStack.depth  1) {
pageStack.pop()
  }

  
  In Ubuntu.Components 1.2 this does no longer work, because it pops the first 
page too. My suspicion is that it is related to the animation in the header 
which updates the depth asynchronously.

  See the attached file as a standalone example to reproduce. While it
  works when importing 1.1, it breaks when importing 1.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1461729/+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


[Touch-packages] [Bug 1461729] Re: calling pageStack.pop() in a loop pops too much

2015-06-06 Thread Launchpad Bug Tracker
** Branch linked: lp:~tpeeters/ubuntu-ui-toolkit/popLoopBug

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

Title:
  calling pageStack.pop() in a loop pops too much

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

Bug description:
  In Ubuntu.Components 1.1 this was working fine to pop everything from
  a PageStack except the first page:

  while (pageStack.depth  1) {
pageStack.pop()
  }

  
  In Ubuntu.Components 1.2 this does no longer work, because it pops the first 
page too. My suspicion is that it is related to the animation in the header 
which updates the depth asynchronously.

  See the attached file as a standalone example to reproduce. While it
  works when importing 1.1, it breaks when importing 1.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1461729/+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