[Bug 1437910] Re: bq phone screenshot not working

2015-03-31 Thread Matti Rinta-Nikkola
I have Ubuntu version 12.04 and me too I'm not able to take screen shots If I start adb server phablet-screenshot command will trace E: Device '' is not supported. ~$ sudo adb start-server ~$ phablet-screenshot test.png E: Device '' is not supported. With debug option ~$

[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 Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1419072 Title: Ubuntu sdk devices tab empty To manage notifications

[Bug 1384421] Re: Download manager follows redirect without considering HTTP code

2015-04-09 Thread Matti Rinta-Nikkola
** Also affects: ubuntu Importance: Undecided Status: New ** No longer affects: ubuntu -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1384421 Title: Download manager follows redirect

[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 **

[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.

[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

[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.

[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

[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

[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

[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

[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.