[Touch-packages] [Bug 1492769] Re: OSK should be closed before removing page from PageStack

2015-09-23 Thread Matti Rinta-Nikkola
OSK does disappear but the page where OSK has been activated is removed
before OSK signals visibleChanged(). As a result the signal is captured
on page where OSK has not been activated. The same will happen if you
simply after Qt.inputMethod.hide() put pageStack.pop() without setting a
time delay.

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

Title:
  OSK should be closed before removing page from PageStack

Status in ubuntu-keyboard package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu:
  New

Bug description:
  Hello, I think I have found a bug from PageStack component, see

  https://bugs.launchpad.net/my-webapp-group/+bug/1490493

  I have produced a small app where the bug can be easily reproduced

  https://code.launchpad.net/~matti-rintanikkola-d/+junk/radial-buttom-
  edge-bug

  Reproduce fault: 
  1) Open "Page2" page from Root page by clicking radial action icon "Home"
  2) click website title/url field in order to open keyboard view
  3) without closing the keyboard turn back to the main view
  4) the main view will be opened without radial actions edge button

  Analysis: The visibility of the main view radial edge button is
  toggled by using the connection

  Connections {
  target: Qt.inputMethod
  onVisibleChanged: nav.visible = !nav.visible
  }

  If you do not close the keyboard when turning back to the Root page
  from "Page2" page the main view became visible before the signal
  onVisibleChanged is fired and when it will be fired the radial edge
  button becomes invisible.

  Solution?: Before removing the page from pageStack it should be
  ensured that the keyboard is not visible. Maybe this could be achieved
  simply by adding a function call Qt.inputMethod.hide() before removing
  the page from pageStack.

  Regards,

  Matti

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-keyboard/+bug/1492769/+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 1495118] Re: OSK anchored buttons are difficult to click

2015-09-23 Thread Matti Rinta-Nikkola
Egri, you probably meant the property activeFocusOnPress and not
autoFocusOnTap. I do not know which is designed behaviour of the OSK
button clicks. Anyhow I would like to see OSK disappear when I do click
OSK button exactly what is the behaviour of my work around. In your
suggested work around the OSK remains visible.

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

Title:
  OSK anchored buttons are difficult to click

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

Bug description:
  As described on document "ubuntu-screen-keyboard-tricks", see the link
  below, you can anchor action buttons to OSK so that they will remain
  visible above the OSK. However at the moment it is practically
  impossible to click them because they fall down too quickly with OSK.
  Either you do a very very fast click or place your finger over the
  button and after OSK has disappeared slide your finger again over the
  button and finally release it. Aren't these action buttons meant to be
  click-able when they are above OSK? Now in practice they aren't.

  A small sample app with OSK action button to demonstrate the problem...
  https://code.launchpad.net/~matti-rintanikkola-d/+junk/osk-button-bug
   
  
https://developer.ubuntu.com/en/apps/qml/tutorials/ubuntu-screen-keyboard-tricks/

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1495118/+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 1495118] Re: OSK anchored buttons are difficult to click

2015-09-20 Thread Matti Rinta-Nikkola
As a work around the bug can be resolved as follows (without click
sound):

   Button {
id: createButton
text: "Create Account"

anchors {
horizontalCenter: parent.horizontalCenter
bottom: parent.bottom
margins: units.gu(2)
}
onClicked: {
if(!oskVisible){
popupMessage("onClicked","You have clicked button...")
} 
}
}
onStateChanged:{
if (createButton.pressed && oskVisible){
popupMessage("onStateChanged","You have clicked button...") 
}
}
states: [
State {
name: "pressed"
when: createButton.pressed
}
]
}

Connections {
target: Qt.inputMethod
onVisibleChanged: {
oskVisible=!oskVisible
console.log('oskVisible: '+oskVisible)
}
}

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

Title:
  OSK anchored buttons are difficult to click

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

Bug description:
  As described on document "ubuntu-screen-keyboard-tricks", see the link
  below, you can anchor action buttons to OSK so that they will remain
  visible above the OSK. However at the moment it is practically
  impossible to click them because they fall down too quickly with OSK.
  Either you do a very very fast click or place your finger over the
  button and after OSK has disappeared slide your finger again over the
  button and finally release it. Aren't these action buttons meant to be
  click-able when they are above OSK? Now in practice they aren't.

  A small sample app with OSK action button to demonstrate the problem...
  https://code.launchpad.net/~matti-rintanikkola-d/+junk/osk-button-bug
   
  
https://developer.ubuntu.com/en/apps/qml/tutorials/ubuntu-screen-keyboard-tricks/

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1495118/+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 1492769] Re: OSK should be closed before removing page from PageStack

2015-09-20 Thread Matti Rinta-Nikkola
As a work around the bug can be resolved by overriding the default
PageStack back button:

head.backAction: Action {
iconName: "back"
onTriggered: {
Qt.inputMethod.hide()
myTimer.delay(pageStack.pop, 500)
}
}

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

Title:
  OSK should be closed before removing page from PageStack

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

Bug description:
  Hello, I think I have found a bug from PageStack component, see

  https://bugs.launchpad.net/my-webapp-group/+bug/1490493

  I have produced a small app where the bug can be easily reproduced

  https://code.launchpad.net/~matti-rintanikkola-d/+junk/radial-buttom-
  edge-bug

  Reproduce fault: 
  1) Open "Page2" page from Root page by clicking radial action icon "Home"
  2) click website title/url field in order to open keyboard view
  3) without closing the keyboard turn back to the main view
  4) the main view will be opened without radial actions edge button

  Analysis: The visibility of the main view radial edge button is
  toggled by using the connection

  Connections {
  target: Qt.inputMethod
  onVisibleChanged: nav.visible = !nav.visible
  }

  If you do not close the keyboard when turning back to the Root page
  from "Page2" page the main view became visible before the signal
  onVisibleChanged is fired and when it will be fired the radial edge
  button becomes invisible.

  Solution?: Before removing the page from pageStack it should be
  ensured that the keyboard is not visible. Maybe this could be achieved
  simply by adding a function call Qt.inputMethod.hide() before removing
  the page from pageStack.

  Regards,

  Matti

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1492769/+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 1495118] Re: OSK anchored buttons are difficult to click

2015-09-18 Thread Matti Rinta-Nikkola
I think the bug has similarities with the bug  #1486008 "[sdk] leading
actions width is too small making it very difficult to press"

Michael Sheldon (michael-sheldon) wrote on 2015-09-11: 
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1486008/comments/13

This is because the hiding animation starts when the area is pressed,
but the action is only triggered on release. Due to a quirk in QML's
mouse areas release event don't get emitted if the finger is no longer
inside the relevant mouse area when the release happens (in this case
caused to the mouse area having been moved by the hiding animation). So
the release event is never emitted and the action isn't triggered.

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

Title:
  OSK anchored buttons are difficult to click

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

Bug description:
  As described on document "ubuntu-screen-keyboard-tricks", see the link
  below, you can anchor action buttons to OSK so that they will remain
  visible above the OSK. However at the moment it is practically
  impossible to click them because they fall down too quickly with OSK.
  Either you do a very very fast click or place your finger over the
  button and after OSK has disappeared slide your finger again over the
  button and finally release it. Aren't these action buttons meant to be
  click-able when they are above OSK? Now in practice they aren't.

  A small sample app with OSK action button to demonstrate the problem...
  https://code.launchpad.net/~matti-rintanikkola-d/+junk/osk-button-bug
   
  
https://developer.ubuntu.com/en/apps/qml/tutorials/ubuntu-screen-keyboard-tricks/

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1495118/+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 1495118] [NEW] OSK anchored buttons are difficult to click

2015-09-12 Thread Matti Rinta-Nikkola
Public bug reported:

As described on document "ubuntu-screen-keyboard-tricks", see the link
below, you can anchor action buttons to OSK so that they will remain
visible above the OSK. However at the moment it is practically
impossible to click them because they fall down too quickly with OSK.
Either you do a very very fast click or place your finger over the
button and after OSK has disappeared slide your finger again over the
button and finally release it. Aren't these action buttons meant to be
click-able when they are above OSK? Now in practice they aren't.

A small sample app with OSK action button to demonstrate the problem...
https://code.launchpad.net/~matti-rintanikkola-d/+junk/osk-button-bug
 
https://developer.ubuntu.com/en/apps/qml/tutorials/ubuntu-screen-keyboard-tricks/

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  OSK anchored buttons are difficult to click

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

Bug description:
  As described on document "ubuntu-screen-keyboard-tricks", see the link
  below, you can anchor action buttons to OSK so that they will remain
  visible above the OSK. However at the moment it is practically
  impossible to click them because they fall down too quickly with OSK.
  Either you do a very very fast click or place your finger over the
  button and after OSK has disappeared slide your finger again over the
  button and finally release it. Aren't these action buttons meant to be
  click-able when they are above OSK? Now in practice they aren't.

  A small sample app with OSK action button to demonstrate the problem...
  https://code.launchpad.net/~matti-rintanikkola-d/+junk/osk-button-bug
   
  
https://developer.ubuntu.com/en/apps/qml/tutorials/ubuntu-screen-keyboard-tricks/

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1495118/+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 1492769] [NEW] OSK should be closed before removing page from PageStack

2015-09-06 Thread Matti Rinta-Nikkola
Public bug reported:

Hello, I think I have found a bug from PageStack component, see

https://bugs.launchpad.net/my-webapp-group/+bug/1490493

I have produced a small app where the bug can be easily reproduced

https://code.launchpad.net/~matti-rintanikkola-d/+junk/radial-buttom-
edge-bug

Reproduce fault: 
1) Open "Page2" page from Root page by clicking radial action icon "Home"
2) click website title/url field in order to open keyboard view
3) without closing the keyboard turn back to the main view
4) the main view will be opened without radial actions edge button

Analysis: The visibility of the main view radial edge button is toggled
by using the connection

Connections {
target: Qt.inputMethod
onVisibleChanged: nav.visible = !nav.visible
}

If you do not close the keyboard when turning back to the Root page from
"Page2" page the main view became visible before the signal
onVisibleChanged is fired and when it will be fired the radial edge
button becomes invisible.

Solution?: Before removing the page from pageStack it should be ensured
that the keyboard is not visible. Maybe this could be achieved simply by
adding a function call Qt.inputMethod.hide() before removing the page
from pageStack.

Regards,

Matti

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  OSK should be closed before removing page from PageStack

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

Bug description:
  Hello, I think I have found a bug from PageStack component, see

  https://bugs.launchpad.net/my-webapp-group/+bug/1490493

  I have produced a small app where the bug can be easily reproduced

  https://code.launchpad.net/~matti-rintanikkola-d/+junk/radial-buttom-
  edge-bug

  Reproduce fault: 
  1) Open "Page2" page from Root page by clicking radial action icon "Home"
  2) click website title/url field in order to open keyboard view
  3) without closing the keyboard turn back to the main view
  4) the main view will be opened without radial actions edge button

  Analysis: The visibility of the main view radial edge button is
  toggled by using the connection

  Connections {
  target: Qt.inputMethod
  onVisibleChanged: nav.visible = !nav.visible
  }

  If you do not close the keyboard when turning back to the Root page
  from "Page2" page the main view became visible before the signal
  onVisibleChanged is fired and when it will be fired the radial edge
  button becomes invisible.

  Solution?: Before removing the page from pageStack it should be
  ensured that the keyboard is not visible. Maybe this could be achieved
  simply by adding a function call Qt.inputMethod.hide() before removing
  the page from pageStack.

  Regards,

  Matti

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1492769/+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 1487469] Re: Several rated apps are shown "* 0.0" rate

2015-08-21 Thread Matti Rinta-Nikkola
** Description changed:

  Navigate for example to: "Ubuntu Store" -> Communication -> App Internet the 
most popular...
- All the apps are displayed "* 0.0" rates although they all have rated, see 
attachment.
+ All the apps are displayed "* 0.0" rates although they all have been rated, 
see attachment.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity-scope-click in
Ubuntu.
https://bugs.launchpad.net/bugs/1487469

Title:
  Several rated apps are shown "* 0.0" rate

Status in unity-scope-click package in Ubuntu:
  New

Bug description:
  Navigate for example to: "Ubuntu Store" -> Communication -> App Internet the 
most popular...
  All the apps are displayed "* 0.0" rates although they all have been rated, 
see attachment.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-click/+bug/1487469/+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 1487469] [NEW] Several rated apps are shown "* 0.0" rate

2015-08-21 Thread Matti Rinta-Nikkola
Public bug reported:

Navigate for example to: "Ubuntu Store" -> Communication -> App Internet the 
most popular...
All the apps are displayed "* 0.0" rates although they all have rated, see 
attachment.

** Affects: unity-scope-click (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "screenshot20150821_151722003.png"
   
https://bugs.launchpad.net/bugs/1487469/+attachment/4450233/+files/screenshot20150821_151722003.png

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity-scope-click in
Ubuntu.
https://bugs.launchpad.net/bugs/1487469

Title:
  Several rated apps are shown "* 0.0" rate

Status in unity-scope-click package in Ubuntu:
  New

Bug description:
  Navigate for example to: "Ubuntu Store" -> Communication -> App Internet the 
most popular...
  All the apps are displayed "* 0.0" rates although they all have rated, see 
attachment.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-click/+bug/1487469/+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 1419072] Re: Ubuntu sdk devices tab empty

2015-04-13 Thread Matti Rinta-Nikkola
The fault is no more present after SDK application update of today
13/04/2015.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-touch-meta in
Ubuntu.
https://bugs.launchpad.net/bugs/1419072

Title:
  Ubuntu sdk devices tab empty

Status in ubuntu-touch-meta package in Ubuntu:
  Confirmed

Bug description:
  OS: Ubuntu 14.04.1 LTS
  Ubuntu-SDK version: 3.1.1
  Ubuntu SDK shows empty window when I click on Devices tab.

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