[Bug 1595139] Re: Envelope icon looks asymmetrical

2016-06-24 Thread Andrea Bernabei
I might be stating the obvious here, but this looks like what happens when the graphics/icons are not rendered pixel-aligned (for more info, see http://likethought.com/lockfocus/2009/10/pixel- aligning/ ) -- You received this bug notification because you are a member of Ubuntu Bugs, which is sub

[Bug 1580146] Re: [touch] Internet connection stops working while WiFi is still connected

2016-06-28 Thread Andrea Bernabei
@Tony: that's great, thanks for all the info :) I'm on a sprint this week, I will try it first thing when I get back to the office! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1580146 Title: [to

[Bug 1580146] Re: [touch] Internet connection stops working while WiFi is still connected

2016-07-01 Thread Andrea Bernabei
@John, not sure if I've noted this down already in the previous comment, but in case I haven't: I usually just tap on the wifi network I'm connected to, to trigger reconnection. That fixes the issue for me (until it stops working again after a few minutes, or less than a minute in some cases I t

[Bug 1674838] Re: kernel BUG at /build/linux-7LGLH_/linux-4.10.0/include/linux/swapops.h:129

2017-04-18 Thread Andrea Bernabei
same bug here, after upgrading to latest Zesty packages as of yesterday. (kernel 4.10.0-19-generic) I use firefox-trunk, the nightly build. At one point firefox-trunk goes 100% cpu and it can't even be killed. After a couple of minutes, the whole system freezes. -- You received this bug notifi

[Bug 1386465] Re: apparmor profile prevents libvirtd from creating a socket

2016-03-07 Thread Andrea Bernabei
@Serge why a new bug? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1386465 Title: apparmor profile prevents libvirtd from creating a socket To manage notifications about this bug go to: https://bu

[Bug 1538659] Re: Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in Vivid archive

2016-03-08 Thread Andrea Bernabei
@Albert: who could get this bug? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1538659 Title: Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in Vivid archive To manage notifi

[Bug 1538659] Re: Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in Vivid archive

2016-03-08 Thread Andrea Bernabei
yeah, I think so, it's only been released on Wily (at least that's what the other bug reports states) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1538659 Title: Unity8 on Vivid doesn't boot, due t

[Bug 1538659] Re: Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in Vivid archive

2016-03-08 Thread Andrea Bernabei
please notice I also have the overlay PPA installed ;) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1538659 Title: Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in Vivid arc

[Bug 1538659] Re: Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in Vivid archive

2016-03-08 Thread Andrea Bernabei
The bug was reported in January...but yeah, makes sense, thanks anyway -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1538659 Title: Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mi

[Bug 1556860] [NEW] Blank left panel header after resizing AdaptivePageLayout from two panels to one and back

2016-03-14 Thread Andrea Bernabei
Public bug reported: UITK r1888 Environment: Windowed mode, Vivid+OverlayPPA Steps to reproduce: 1) Launch UI Toolkit Gallery 2) Scroll left panel until the header animates out of screen 3) Resize window so that only the left panel is shown 4) Resize window until it shows both left and right pan

[Bug 1620553] Re: OSK becomes unusable as taps are delayed by 1-2 seconds and vibration doesn't occur any more (although gestures continue to work)

2016-09-09 Thread Andrea Bernabei
Started from Pat's script and found an easier way to reproduce it (note the final ampersand, which is the trick): cat ./bombard.sh #!/bin/bash i=$1 while [ $i -gt 0 ]; do dbus-send --session --print-reply --type=method_call --dest='com.canonical.usensord' /com/canonical/usensord/haptic com.

[Bug 1620553] Re: OSK becomes unusable as taps are delayed by 1-2 seconds and vibration doesn't occur any more (although gestures continue to work)

2016-09-09 Thread Andrea Bernabei
Hi Zhang, more precisely, it seems at least one of the routines gets stuck at waiting for a reply on replyChan i.e. line 303 (see above) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1620553 Title:

[Bug 1620553] Re: OSK becomes unusable as taps are delayed by 1-2 seconds and vibration doesn't occur any more (although gestures continue to work)

2016-09-09 Thread Andrea Bernabei
Here is the stracktrace of all the goroutines running at http://bazaar.launchpad.net/~go-dbus/go-dbus/v1/view/136/dbus.go#L302 i.e. I printed the stacktrace of all the goroutines right before the "reply := <- replyChan" (disclaimer: I have 0 Go knowledge so take my words here with a pinch of salt

[Bug 1620553] Re: OSK becomes unusable as taps are delayed by 1-2 seconds and vibration doesn't occur any more (although gestures continue to work)

2016-09-09 Thread Andrea Bernabei
another stacktrace, this time dispatchMessage does not appear in the list of the calls, just fyi. It could be that it had already completed or had not started yet, not sure. Just thought I'd share this trace as well ** Attachment added: "go_stacktrace2" https://bugs.launchpad.net/ubuntu/+sour

[Bug 1620553] Re: OSK becomes unusable as taps are delayed by 1-2 seconds and vibration doesn't occur any more (although gestures continue to work)

2016-09-09 Thread Andrea Bernabei
Additional info: I built usensord on my laptop using "go run -race usensord.go" and that did not show any race condition after usensord stalled. I also tried "go run -race test.go" using the code from https://golang.org/doc/articles/race_detector.html#Introduction so I think the race detector s

[Bug 1620553] Re: OSK becomes unusable as taps are delayed by 1-2 seconds and vibration doesn't occur any more (although gestures continue to work)

2016-09-09 Thread Andrea Bernabei
And the race detector correctly showed the data race in test.go, just not in usensord -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1620553 Title: OSK becomes unusable as taps are delayed by 1-2 sec

[Bug 1599649] Re: High CPU usage on arale when running simple clients with animations

2016-09-11 Thread Andrea Bernabei
** Changed in: mir Status: Expired => Confirmed ** Changed in: qtmir Status: Expired => Confirmed ** Changed in: unity8 (Ubuntu) Status: Expired => Confirmed ** Changed in: mir (Ubuntu) Status: Expired => Confirmed ** Changed in: qtmir (Ubuntu) Status: Expired

[Bug 1624337] Re: Scrollbar tests fail on Qt 5.6.

2016-09-17 Thread Andrea Bernabei
** Changed in: ubuntu-ui-toolkit (Ubuntu) Assignee: (unassigned) => Andrea Bernabei (faenil) ** Changed in: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided => Critical ** Changed in: ubuntu-ui-toolkit (Ubuntu) Status: New => In Progress -- You received this bug not

[Bug 1328119] Re: [sdk] Scrollbars are too thin and transparent to be useful

2016-09-17 Thread Andrea Bernabei
@Ugo , the new Scrollbar designs have landed, could you please check if the new Scrollbar works better for you and let us have your feedback? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1328119 Titl

[Bug 1610230] Re: tst_expandablescolumn11 fails with Qt 5.6

2016-09-17 Thread Andrea Bernabei
** Changed in: ubuntu-ui-toolkit (Ubuntu) Status: Confirmed => In Progress -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1610230 Title: tst_expandablescolumn11 fails with Qt 5.6 To manage no

[Bug 1610230] Re: tst_expandablescolumn11 fails with Qt 5.6

2016-09-17 Thread Andrea Bernabei
** Changed in: ubuntu-ui-toolkit (Ubuntu) Assignee: (unassigned) => Andrea Bernabei (faenil) ** Changed in: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided => Critical -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1624343] Re: UbuntuListView TypeErrors

2016-09-17 Thread Andrea Bernabei
kit (Ubuntu) Status: New => In Progress ** Changed in: ubuntu-ui-toolkit (Ubuntu) Assignee: (unassigned) => Andrea Bernabei (faenil) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/16243

[Bug 1610230] Re: tst_expandablescolumn11 fails with Qt 5.6

2016-09-17 Thread Andrea Bernabei
same applies to mapFromItem -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1610230 Title: tst_expandablescolumn11 fails with Qt 5.6 To manage notifications about this bug go to: https://bugs.launchp

[Bug 1610230] Re: tst_expandablescolumn11 fails with Qt 5.6

2016-09-17 Thread Andrea Bernabei
We were previously misusing mapToItem by not passing x/y parameters and relying on JS to initialize them to 0. Qt5.6 fixes QTBUG-41686 and requires x/y to be explicitly passed. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. htt

[Bug 1624337] Re: Scrollbar tests fail on Qt 5.6.

2016-09-17 Thread Andrea Bernabei
We were previously misusing mapToItem/mapFromItem by not passing x/y parameters and relying on JS to initialize them to 0. Qt5.6 fixes QTBUG-41686 and requires x/y to be explicitly passed. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubunt

[Bug 1624343] Re: Qt5.6: UbuntuListView unit test fails with TypeError

2016-09-17 Thread Andrea Bernabei
** Summary changed: - UbuntuListView TypeErrors + Qt5.6: UbuntuListView unit test fails with TypeError -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1624343 Title: Qt5.6: UbuntuListView unit test f

[Bug 1624328] Re: tst_listitem failures

2016-09-17 Thread Andrea Bernabei
this was probably passing before because of bug #1610349 it should be just a matter of checking which colour is the correct one and updating the test -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1624

[Bug 1622577] Re: tst_pagestack_deprecated_toolbar unit test warnings with qt56

2016-09-17 Thread Andrea Bernabei
What I'm seeing here: - the problem appears when cleanupTestCase() tries to destroy the components - cleanupTestCase() destroys Tabs - TabBar is somehow destroyed before its style. - tabsModel in TabBarStyle becomes null because styledItem becomes null - isVisible() in TabBarStyle tries to access

[Bug 1624342] Re: tst_textarea.11.qml unit test fails

2016-09-17 Thread Andrea Bernabei
1) typo, should be "TextArea.color is same as TextEdit.color" 2) does it make sense to expect TextArea (which has Ubuntu styling) to have the same default colour as TextEdit? Maybe we should just change the test? -- You received this bug notification because you are a member of Ubuntu Bugs, whic

[Bug 1625107] [NEW] Xenial overlay PPA: unity8-desktop-session deps conflict with kubuntu-desktop install deps

2016-09-19 Thread Andrea Bernabei
Public bug reported: Environment: Xenial + Overlay PPA, all packages updated as of 14th Sept 2016 Description: Team's machine. It had unity8-desktop-session installed, I tried installing kubuntu-desktop but that failed. 1) Installed kubuntu-desktop and that removed unity8-desktop-session (I di

[Bug 1625704] Re: Keyboard indicator is confusing when no external keyboards attached

2016-09-20 Thread Andrea Bernabei
** Also affects: ubuntu-ux Importance: Undecided Status: New ** Changed in: ubuntu-ux Assignee: (unassigned) => Matthew Paul Thomas (mpt) ** Also affects: unity8 (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of

[Bug 1625706] Re: ActivityIndicatorStyle not working properly

2016-09-20 Thread Andrea Bernabei
Hi Davide, can you check if it's the same as bug #1618007 ? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1625706 Title: ActivityIndicatorStyle not working properly To manage notifications about th

[Bug 1628855] Re: UITK Gallery: first click on left panel list items activates the focus frame

2016-09-29 Thread Andrea Bernabei
** Changed in: ubuntu-ui-toolkit (Ubuntu) Assignee: (unassigned) => Zsombor Egri (zsombi) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1628855 Title: UITK Gallery: first click on left panel li

[Bug 1630167] Re: When SlotsLayout uses a Column as mainSlot and view is resized horizontally an inifinite resize loop starts

2016-10-04 Thread Andrea Bernabei
info for my future self: I investigated this bug a few days ago, when Trevinho first reported it directly to me. It turns out the loop is triggered when the view is resized so that the column gets a *negative* width. At that point you see columns height going 0 to 5 (which is rectangle's height

[Bug 1552100] Re: Create .snap packages of core apps

2016-10-04 Thread Andrea Bernabei
** Summary changed: - Move to Snappy + Create .snap packages of core apps -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1552100 Title: Create .snap packages of core apps To manage notifications ab

[Bug 1628161] Re: SlotsLayout height is not dynamically updated when main paddings change

2016-10-05 Thread Andrea Bernabei
** Also affects: ubuntu-ui-toolkit (Ubuntu RTM) Importance: Undecided Status: New ** Also affects: canonical-devices-system-image Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. ht

[Bug 1630683] [NEW] ListItem: setting implicitHeight has no effect

2016-10-05 Thread Andrea Bernabei
Public bug reported: ubuntu-ui-toolkit/staging, r2133 Description: Creating a ListItem and setting its implicitHeight has no effect. This means any component that derives from ListItem has to be implemented setting its height, while the best practice (as far as I know) is that components are su

[Bug 1630167] Re: SlotsLayout with Column as mainSlot: endless loop when resizing view so that Column has negative width

2016-10-07 Thread Andrea Bernabei
-ui-toolkit (Ubuntu RTM) Assignee: (unassigned) => Andrea Bernabei (faenil) ** Changed in: ubuntu-ui-toolkit (Ubuntu RTM) Importance: Undecided => Medium ** Changed in: ubuntu-ui-toolkit (Ubuntu RTM) Status: New => In Progress -- You received this bug notification because you

[Bug 1624337] Re: Scrollbar tests fail on Qt 5.6.

2016-10-07 Thread Andrea Bernabei
** Changed in: ubuntu-ui-toolkit (Ubuntu) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1624337 Title: Scrollbar tests fail on Qt 5.6. To manage notifica

[Bug 1561861] Re: UbuntuColors.Orange should be Ubuntu.orange instead

2016-10-07 Thread Andrea Bernabei
; In Progress ** Changed in: ubuntu-ui-toolkit (Ubuntu RTM) Importance: Undecided => Low ** Changed in: ubuntu-ui-toolkit (Ubuntu RTM) Assignee: (unassigned) => Andrea Bernabei (faenil) ** No longer affects: ubuntu-ui-toolkit (Ubuntu RTM) -- You received this bug notification because

[Bug 1561861] Re: UbuntuColors.Orange should be Ubuntu.orange instead

2016-10-07 Thread Andrea Bernabei
** Changed in: ubuntu-ui-toolkit (Ubuntu) Assignee: (unassigned) => Andrea Bernabei (faenil) ** Changed in: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided => Low ** Changed in: ubuntu-ui-toolkit (Ubuntu) Status: New => In Progress -- You received this bug notificatio

[Bug 1277030] Re: Scrollbar should match overlay-scrollbar style.

2016-10-07 Thread Andrea Bernabei
Hi Robert, I implemented the new scrollbars a few months ago. Can you have a look and confirm if the new scrollbars fix your problems? (I'm not sure I understand, from the description) The Scrollbars I implemented are for Qt apps that use the Ubuntu UI Toolkit -- You received this bug notifica

[Bug 1631447] Re: SlotsLayout padding grouped property needs to assigned member-by-member, can't be assigned as a whole

2016-10-07 Thread Andrea Bernabei
Thanks Marco! That makes sense, I'll have a look at that next week! ** Summary changed: - SlotsLayout paddings can't be bound to another layout values + SlotsLayout padding grouped property needs to assigned member-by-member, can't be assigned as a whole ** Description changed: + ubuntu-ui-too

[Bug 1561861] Re: ListItemLayout documentation: UbuntuColors.Orange should be UbuntuColors.orange instead

2016-10-09 Thread Andrea Bernabei
Thank you for reporting it! And sorry it took so long! Feel free to directly assign ListItemLayout/SlotsLayout bug to me, to make sure I'm aware of their existance ;) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchp

[Bug 1585723] Re: UbuntuShape on intel i915 (Atom) uses fallback CPU rendering

2016-10-09 Thread Andrea Bernabei
nope, it will still take a few weeks, from what I understood (sorry if I can't give more precise info, that is all I know :/ ) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1585723 Title: UbuntuShap

[Bug 1328118] Re: Scrollbars don't show hovering ListView/ GridView

2016-10-09 Thread Andrea Bernabei
n the bug if you think this is not fixed yet! :) ** Changed in: ubuntu-ui-toolkit (Ubuntu) Status: Confirmed => Fix Released ** Changed in: ubuntu-ui-toolkit (Ubuntu) Assignee: (unassigned) => Andrea Bernabei (faenil) -- You received this bug notification because you are

[Bug 1592652] Re: Ubuntu.Components.ListItems version is wrong

2016-06-15 Thread Andrea Bernabei
*** This bug is a duplicate of bug 1585557 *** https://bugs.launchpad.net/bugs/1585557 this is already fixed by https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1585557 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubun

[Bug 1592652] Re: Ubuntu.Components.ListItems version is wrong

2016-06-15 Thread Andrea Bernabei
*** This bug is a duplicate of bug 1585557 *** https://bugs.launchpad.net/bugs/1585557 so it just needs to wait for the Community team to updated the documentation website :) ** This bug has been marked a duplicate of bug 1585557 ListItems, Popups, Pickers, Styles modules documentation pa

[Bug 1592417] Re: Hard to swipe left/right on MX4

2016-06-15 Thread Andrea Bernabei
cool, I didn't know there were settings for it, thanks Pat! :) If tweaking the settings doesn't work out, you can try having a look at the code. I'm not familiar with the code that handles the swipe gestures, but I had a quick look and I think the gesture area on the left is defined here http:/

[Bug 1583224] Re: System settings occasionally crashes when trying to open Brightness page

2016-06-17 Thread Andrea Bernabei
isn't that more of an "incomplete"? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1583224 Title: System settings occasionally crashes when trying to open Brightness page To manage notifications a

[Bug 1384374] Re: Dash pauses/stutters during scope switching left/right

2016-06-17 Thread Andrea Bernabei
There is a chance the [PERFORMANCE] logger needs some tweaking/debugging. I have just tried rebooting the phone. I had multiple half-second or full-second freezes when horizontally scrolling between scopes, yet the [PERFORMANCE] logger only reported 3-4 "69ms to render" or "75ms to render" which

[Bug 1384374] Re: Dash pauses/stutters during scope switching left/right

2016-06-18 Thread Andrea Bernabei
@Albert and @Kevin: please find the full log attached. I had a quick look, the main thread is chocking on the polish phase. So it seems a layout performance problem, unless we're using Canvas in the QML code (Canvas does the rendering in the polish method, iirc) Examples from the log: 3.4 secon

[Bug 1594306] [NEW] Emulator creation process should default to stable channel instead of devel

2016-06-20 Thread Andrea Bernabei
Public bug reported: r228 "ubuntu-emulator create" command currently defaults to creating an emulator from the ubuntu-touch/devel channel The daily "landing emails" on the Ubuntu-Phone ML taught me that the emulator on devel channel is, most of the times, broken. NOTE: the SDK IDE already defau

[Bug 1580146] Re: [touch] Internet connection stops working while WiFi is still connected

2016-06-20 Thread Andrea Bernabei
still happening as of r361, krillin, rc-proposed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1580146 Title: [touch] Internet connection stops working while WiFi is still connected To manage not

[Bug 1594306] Re: Emulator creation process should default to stable channel instead of devel

2016-06-20 Thread Andrea Bernabei
** Description changed: - r228 + Code from r228 "ubuntu-emulator create" command currently defaults to creating an emulator from the ubuntu-touch/devel channel The daily "landing emails" on the Ubuntu-Phone ML taught me that the emulator on devel channel is, most of the times, broken

[Bug 1594306] Re: Emulator creation process should default to stable channel instead of devel

2016-06-20 Thread Andrea Bernabei
** Branch linked: lp:~faenil/goget-ubuntu- touch/emulator_default_to_stable -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1594306 Title: Emulator creation process should default to stable channel in

[Bug 1594400] Re: Wrong statement about "persistentSelection" property of TextArea

2016-06-20 Thread Andrea Bernabei
** Changed in: ubuntu-ui-toolkit (Ubuntu) Assignee: (unassigned) => Christian Dywan (kalikiana) ** Changed in: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://

[Bug 1536751] Re: Font/text rendering is irregular and not pixel-aligned on low DPI screens

2017-02-16 Thread Andrea Bernabei
see the first comments for a few (old) experiments I made using different Qt font antialiasing settings -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1536751 Title: Font/text rendering is irregular

[Bug 1640514] [NEW] /snap/bin is not added to the PATH when using zsh

2016-11-09 Thread Andrea Bernabei
Public bug reported: --- Environment --- Ubuntu Zesty 17.04 (dev) zsh snapd 2.16 --- Description --- zsh does not seem to load the scripts in /etc/profile.d/ (see https://bugzilla.redhat.com/show_bug.cgi?id=88457 ). As a consequence, /snap/bin is not added to PATH, and running snaps from termin

[Bug 1640514] Re: /snap/bin is not added to the PATH when using zsh

2016-11-09 Thread Andrea Bernabei
the zsh bug I linked was marked as NOTABUG. It seems zsh used to source /etc/profile, but that was changed at one point, to fix some other problem. So "fixing" zsh does not seem like a viable option :/ -- You received this bug notification because you are a member of Ubuntu Bugs, which is subs

[Bug 1640514] Re: /snap/bin is not added to the PATH when using zsh

2016-11-10 Thread Andrea Bernabei
@xtaran: thanks for the useful info! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1640514 Title: /snap/bin is not added to the PATH when using zsh To manage notifications about this bug go to: htt

[Bug 1571513] Re: Please turn off vibrate on touch/typing by default. It makes the phone feel much more laggy

2017-01-16 Thread Andrea Bernabei
Related: the calls to the vibration engine are sync dbus calls. Whenever the system is overloaded, that will result in long UI stalls. In other cases, shorter UI freezes can still be experienced. See https://bugs.launchpad.net/ubuntu/+source/platform-api/+bug/1620553 -- You received this bug not

[Bug 1603450] Re: Changing elide in ListItemLayout title not possible

2016-07-15 Thread Andrea Bernabei
** Also affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status: New ** Changed in: ubuntu-ui-toolkit (Ubuntu) Assignee: (unassigned) => Andrea Bernabei (faenil) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubu

[Bug 1603452] Re: [SDK] Change leading action background to red and icon to white

2016-07-15 Thread Andrea Bernabei
** Also affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1603452 Title: [SDK] Change leading action background to red and

[Bug 1551349] Re: Make ListItem automatically bind to the height of a SlotsLayout/ListItemLayout when that's the only content

2016-07-15 Thread Andrea Bernabei
any news? this is the most voted annoyance by users of ListItem+SlotsLayout/ListItemLayout :) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1551349 Title: Make ListItem automatically bind to the hei

[Bug 914507] Re: Feature Request: special Browser window for logging in to WiFi Hotspots

2016-07-16 Thread Andrea Bernabei
Here's how Chromium handles this: http://www.chromium.org/chromium-os /chromiumos-design-docs/network-portal-detection (link grabbed from one of the comments to the SO thread that Daniel posted) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 1603937] [NEW] Documentation: cannot link to Qt QML classes/components

2016-07-18 Thread Andrea Bernabei
Public bug reported: staging branch, revision 2033 Description Linking to Qt QML classes/methods/components when writing documentation for UITK components does not work. If you want to link to, say, the Text component while writing the documentation for a UITK component, you should be allowed

[Bug 1603938] [NEW] Documentation: remove hardcoded URLs

2016-07-18 Thread Andrea Bernabei
Public bug reported: staging branch, r2033 There are documentation pages which are currently using hardcoded links to Qt pages, probably because of https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1603937 Example: source http://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-tool

[Bug 1551349] Re: Make ListItem automatically bind to the height of a SlotsLayout/ListItemLayout when that's the only content

2016-07-18 Thread Andrea Bernabei
** Branch unlinked: lp:~faenil/ubuntu-ui- toolkit/crossreference_offline_docs -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1551349 Title: Make ListItem automatically bind to the height of a Slots

[Bug 1460464] Re: Add support for the OPUS audio format

2016-07-18 Thread Andrea Bernabei
can have the needed gstream package version added to the Overlay PPA so that currently released phones and tablets can get it? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1460464 Title: Add suppor

[Bug 1603450] Re: Changing elide in ListItemLayout title not possible

2016-07-18 Thread Andrea Bernabei
After chatting with jgdx, we agreed I will go for option 2. MR attached. ** Branch linked: lp:~faenil/ubuntu-ui-toolkit/moreListItemLayoutDocs ** Changed in: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided => Medium ** Changed in: ubuntu-ui-toolkit (Ubuntu) Status: New => In Progress

[Bug 1460464] Re: Add support for the OPUS audio format

2016-07-18 Thread Andrea Bernabei
great news, thanks Jim! The fact that you marked it as "wishlist" had me worried for a second :) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1460464 Title: Add support for the OPUS audio format T

[Bug 1603452] Re: [SDK] Change leading action background to red and icon to white

2016-07-19 Thread Andrea Bernabei
> That is not true. Beware that the disabled state is not for the background > mainly, but for the text color. And the icon color is enabled sensible, > meaning it uses different colors for enabled or disabled state. That was referring to the background. There is only one background color per pa

[Bug 1604442] Re: Keyboard stays on screen after leaving an application

2016-07-19 Thread Andrea Bernabei
** Description changed: Krillin, rc-proposed, r388 Between today and yesterday it happened twice that the keyboard did not hide after switching away from an application. The first time I think maliit crashed, I could interact with the system but the keyboard was unresponsive. I hav

[Bug 1604442] Re: Keyboard stays on screen after leaving an application

2016-07-19 Thread Andrea Bernabei
** Description changed: Krillin, rc-proposed, r388 Between today and yesterday it happened twice that the keyboard did not hide after switching away from an application. The first time I think maliit crashed, I could interact with the system but the keyboard was unresponsive. I hav

[Bug 1604442] [NEW] Keyboard stays on screen after leaving an application

2016-07-19 Thread Andrea Bernabei
Public bug reported: Krillin, rc-proposed, r388 Between today and yesterday it happened twice that the keyboard did not hide after switching away from an application. The first time I think maliit crashed, I could interact with the system but the keyboard was unresponsive. I have no other info t

[Bug 1604442] Re: Keyboard stays on screen after leaving an application

2016-07-20 Thread Andrea Bernabei
Thanks @vanvugt @dandrader: the revision numbers are not useless, if you have enough parameters. I provided everything but the channel suffix, giving for granted that you'd use bq-aquaris.en, which is the official BQ channel (I think that makes more sense over using the ubuntu channel). Startin

[Bug 1570828] Re: Multiple Web Apps crashes when returning from a linked page

2016-07-20 Thread Andrea Bernabei
I've been noticing this on Krillin since a few weeks (now I'm on rc- proposed/bq-aquaris.en r388), I had not noticed it before, so maybe it got worse than it was before? Is there an update about this bug @Alex ? -- You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 1570828] Re: Multiple Web Apps crashes when returning from a linked page

2016-07-20 Thread Andrea Bernabei
"free -h" output on my Krillin while running a webapp, crash included http://pastebin.ubuntu.com/20158255/ -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1570828 Title: Multiple Web Apps crashes whe

[Bug 1570828] Re: Multiple Web Apps crashes when returning from a linked page

2016-07-20 Thread Andrea Bernabei
I'd like to add some details: I have not noticed this issue in the past 1year 5months of using Krilling as my daily driver, until a month or so ago. I believe the system memory usage increased over time to the point of making this bug much more evident since a few weeks (a month? maybe even 2? I'

[Bug 1570828] Re: Multiple Web Apps crashes when returning from a linked page

2016-07-20 Thread Andrea Bernabei
"df" output, to show I'm not running out of space or any particular low- disk-space situation phablet@ubuntu-phablet:~$ df Filesystem 1K-blocksUsed Available Use% Mounted on udev 489504 4489500 1% /dev tm

[Bug 1604442] Re: Keyboard stays on screen after leaving an application

2016-07-20 Thread Andrea Bernabei
** Description changed: - Krillin, rc-proposed, r388 + Krillin, rc-proposed/bq-aquaris.en, r388 Between today and yesterday it happened twice that the keyboard did not hide after switching away from an application. The first time I think maliit crashed, I could interact with the system

[Bug 1552928] Re: New bottom edge component is harder to flick up

2016-07-21 Thread Andrea Bernabei
** Changed in: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided => High -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1552928 Title: New bottom edge component is harder to flick up To manage not

[Bug 1605097] Re: Header sections should be flickable

2016-07-21 Thread Andrea Bernabei
This should have landed long ago. Maybe a regression? I will let timp comment -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1605097 Title: Header sections should be flickable To manage notificatio

[Bug 1606451] Re: Scrollbar error: Unable to assign bool to QQuickItem*

2016-07-26 Thread Andrea Bernabei
Hi Dan, thanks for the bug report. That property is already removed in a WIP branch I have been working on (but haven't had the time to polish and get merged yet). But nonetheless, even without that branch launching the UITK Gallery does not seem to be enough to reproduce that error. Do you hav

[Bug 1606451] Re: Scrollbar error: Unable to assign bool to QQuickItem*

2016-07-26 Thread Andrea Bernabei
also, what version of UITK are you running? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1606451 Title: Scrollbar error: Unable to assign bool to QQuickItem* To manage notifications about this bug

[Bug 1606451] Re: Scrollbar error: Unable to assign bool to QQuickItem*

2016-07-26 Thread Andrea Bernabei
I suspect there might be a timing issue here...in some scenarios __styleInstance value probably changes before __trough is initialized to anything meaningful, and that causes JS to evaluate that expression as a bool instead of a QQuickItem... I'll have a deeper look, thanks Dan! -- You received

[Bug 1536669] Re: "BottomEdge" component does not support automatic mouse detection

2016-07-26 Thread Andrea Bernabei
any update? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1536669 Title: "BottomEdge" component does not support automatic mouse detection To manage notifications about this bug go to: https://bug

[Bug 1606935] [NEW] "See less" button briefly hides while scrolling an expanded category upwards

2016-07-27 Thread Andrea Bernabei
Public bug reported: unity8 trunk branch, r2542 Description The "See less" floating button that shows at the bottom when you expand a category is briefly hidden while you scroll the category upwards. More precisely, it's hidden when floatingSeeLess' "showBecausePosition" property changes from t

[Bug 1526726] Re: Scrollbars in TextArea don't receive mouse hover events

2016-05-09 Thread Andrea Bernabei
This is currently waiting on Visual/UX design. @Designers: please provide the UX/visuals for scrollbars in a textarea. TextAreas are currently rounded, while scrollbars "steppers"-style (the pointer friendly component you get when you hover over the scrollbar) is square. Plus the Scrollbar curre

[Bug 1526726] Re: Scrollbars in TextArea don't receive mouse hover events

2016-05-09 Thread Andrea Bernabei
** Changed in: ubuntu-ux Importance: Undecided => High ** Changed in: ubuntu-ux Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1526726 Title: Scrollbars in TextAre

[Bug 1578283] Re: App scope is blank

2016-05-09 Thread Andrea Bernabei
I get blank apps scope basically after every rc-proposed OS upgrade (i.e. the device reboots to install the upgrade, and when unity8 starts, apps scope is empty), and sometimes after installing apps from the store. The problem started about 2 weeks ago, iirc. Refreshing the scope fixes the proble

[Bug 1526726] Re: Scrollbars in TextArea don't receive mouse hover events

2016-05-09 Thread Andrea Bernabei
** Changed in: ubuntu-ux Assignee: (unassigned) => Grazina (boroskograzina) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1526726 Title: Scrollbars in TextArea don't receive mouse hover events

[Bug 1578283] Re: App scope is blank

2016-05-09 Thread Andrea Bernabei
there you go http://pastebin.ubuntu.com/16317195/ at 12:34 the phone had just rebooted, at 12:38 I unlocked the screen krillin, rc-proposed, r325 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1578283

[Bug 1578283] Re: App scope is blank

2016-05-09 Thread Andrea Bernabei
88 listed in .local/share/applications. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1578283 Title: App scope is blank To manage notifications about this bug go to: https://bugs.launchpad.net/cano

[Bug 1248326] Re: Invalidated tokens not handled gracefully

2016-05-10 Thread Andrea Bernabei
any update? My krillin (Aquaris E4.5 phone) just forgot its U1 login and unexpectedly asked me to sign in again... after discussing with @mardy, it turns out it's this bug -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.

[Bug 1580146] [NEW] Internet connection stops working while WiFi is still connected

2016-05-10 Thread Andrea Bernabei
Public bug reported: krillin, rc-proposed, r329 Description: It often happens that the internet connection stops working while the device is still connected to a (working) WiFi AP. The indicator shows that the phone is connected to the AP, here's the ouput of "nmcli d" and "nmcli c" http://pas

[Bug 1551491] Re: Emoji skin tones are rendered as missing characters

2016-05-10 Thread Andrea Bernabei
Hi Michael, can you give more details about the patches you're referring to? so we can get backport them asap -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1551491 Title: Emoji skin tones are rende

[Bug 1551491] Re: Emoji skin tones are rendered as missing characters

2016-05-10 Thread Andrea Bernabei
@Michael: thanks for the info :) can you please link to those bugs you found (i.e. the source that says it's working on other platforms with Qt) as well? so it's easier for other people to keep track of the different pieces -- You received this bug notification because you are a member of Ubuntu

[Bug 1580146] Re: Internet connection stops working while WiFi is still connected

2016-05-10 Thread Andrea Bernabei
additional info: ping 8.8.8.8 works, ping google.com reports unknown host google.com so the problem could be DNS specific -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1580146 Title: Internet con

  1   2   3   4   5   6   >