[Ubuntu-sdk-bugs] [Bug 1831039] Re: When using Wayland, the onscreen keyboard does not open in text inputs for non-GTK applications such as Firefox or Chrome

2022-03-28 Thread Olivier Tilloy
** Changed in: firefox (Ubuntu) Status: Confirmed => Fix Released -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtbase-opensource-src in Ubuntu. https://bugs.launchpad.net/bugs/1831039 Title: When using Wayland, the

[Ubuntu-sdk-bugs] [Bug 1672444] Re: Negative number of tabs at left of the browser

2017-03-30 Thread Olivier Tilloy
Indeed I can reproduce by resizing the window to its minimum width then back to its original width. Thanks dinamic for the tip! ** Package changed: webbrowser-app (Ubuntu) => ubuntu-ui-extras (Ubuntu) ** Changed in: ubuntu-ui-extras (Ubuntu) Importance: Undecided => Medium -- You received

[Ubuntu-sdk-bugs] [Bug 1675501] Re: webbrowser-app editing menu have no text in "paste" button

2017-03-29 Thread Olivier Tilloy
I filed bug #1677181 to track the issue I’m describing above. ** Package changed: webbrowser-app (Ubuntu) => ubuntu-ui-toolkit (Ubuntu) -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu.

[Ubuntu-sdk-bugs] [Bug 1630765] Re: webbrowser-app crashed with SIGSEGV in QNetworkConfiguration::~QNetworkConfiguration()

2017-03-29 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu) Status: Confirmed => Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtbase-opensource-src in Ubuntu. https://bugs.launchpad.net/bugs/1630765 Title: webbrowser-app crashed

[Ubuntu-sdk-bugs] [Bug 1677181] [NEW] Paste button in TextField’s context menu is always greyed out

2017-03-29 Thread Olivier Tilloy
Public bug reported: I can easily and reliably observe the issue with this simple QML scene: import QtQuick 2.4 import Ubuntu.Components 1.3 Item { width: 400 height: 100 TextField { anchors.centerIn: parent } } Text can be pasted into the text field with the Ctrl+V keyboard

[Ubuntu-sdk-bugs] [Bug 1671121] Re: Deleting something from the history view breaks scrolling and the ability to click on some things

2017-03-22 Thread Olivier Tilloy
This appears to be a UITK bug. I can easily reproduce with the attached standalone example on desktop. The list view can be scrolled using the mouse wheel, and items can be clicked. After right-clicking on an item and deleting it, scrolling the view with the mouse wheel doesn't work any longer,

[Ubuntu-sdk-bugs] [Bug 1670715] Re: Last browser tab not fully displayed at app startup despite being current

2017-03-07 Thread Olivier Tilloy
This might be an issue in ubuntu-ui-extras, tentatively adding a task for the project. ** Also affects: ubuntu-ui-extras (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to

[Ubuntu-sdk-bugs] [Bug 1664620] Re: [regression] webbrowser_app.tests.test_basic_authentication fail with latest UITK

2017-02-14 Thread Olivier Tilloy
>From a quick look at the latest UITK landing, it looks like https://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui- toolkit/trunk/revision/1000.1100.3 could have introduced that regression. ** Also affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status: New -- You received

[Ubuntu-sdk-bugs] [Bug 1560994] Re: webbrowser-app crashed with SIGABRT in oxide::BrowserProcessMainImpl::~BrowserProcessMainImpl

2017-02-10 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu) Status: Confirmed => Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtbase-opensource-src in Ubuntu. https://bugs.launchpad.net/bugs/1560994 Title: webbrowser-app crashed

[Ubuntu-sdk-bugs] [Bug 1590737] Re: Failed to create OpenGL context for format QSurfaceFormat(version 2.0, options QFlags(), depthBufferSize 24, redBufferSize -1, greenBufferSize -1, blueBufferSize -1

2016-12-09 Thread Olivier Tilloy
So it appears this problem is not specific to webbrowser-app or even oxide, but rather Qt failing to create an OpenGL context with this specific driver. Re-targetting the bug. ** Package changed: webbrowser-app (Ubuntu) => qtbase-opensource-src (Ubuntu) ** Also affects:

[Ubuntu-sdk-bugs] [Bug 1646080] Re: Mir-backed InputDeviceModel’s count property is not updated timely

2016-11-30 Thread Olivier Tilloy
Thanks! -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtsystems-opensource-src in Ubuntu. https://bugs.launchpad.net/bugs/1646080 Title: Mir-backed InputDeviceModel’s count property is not updated timely Status in

[Ubuntu-sdk-bugs] [Bug 1646080] Re: Mir-backed InputDeviceModel’s count property is not updated timely

2016-11-30 Thread Olivier Tilloy
Attaching a simple patch that fixes the issue for me. Please review! ** Patch added: "fix-1646080.patch" https://bugs.launchpad.net/ubuntu/+source/qtsystems-opensource-src/+bug/1646080/+attachment/4785330/+files/fix-1646080.patch -- You received this bug notification because you are a

[Ubuntu-sdk-bugs] [Bug 1638517] Re: Mir-backed InputDeviceModel doesn’t work on touch device

2016-11-30 Thread Olivier Tilloy
Note that I’m affected by another issue that prevents me from making use of InputDeviceModel in QML: bug #1646080. -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtsystems-opensource-src in Ubuntu.

[Ubuntu-sdk-bugs] [Bug 1646080] Re: Mir-backed InputDeviceModel’s count property is not updated timely

2016-11-30 Thread Olivier Tilloy
I guess an easy fix would be to emit countChanged again when a device is added to/removed from the model. A (probably) better approach would be to not emit countChanged until after the model has been updated. -- You received this bug notification because you are a member of Ubuntu SDK bug

[Ubuntu-sdk-bugs] [Bug 1638517] Re: Mir-backed InputDeviceModel doesn’t work on touch device

2016-11-29 Thread Olivier Tilloy
How about not passing any argument to the signal emission? AFAIK, a lot of Qt *Changed signals don’t take any argument, so that would be in line with existing code. Of course we’d need to verify that by the time the signal is emitted the row count has actually changed. -- You received this bug

[Ubuntu-sdk-bugs] [Bug 1638517] Re: Mir-backed InputDeviceModel doesn’t work on touch device

2016-11-28 Thread Olivier Tilloy
Nice catch Lorn! This is a nasty one. I would have expected that the value of the count property would be updated *before* the countChanged signal is emitted, regardless of the name of the parameter of the signal. So I just verified that if I do that, this works: import QtQuick 2.4 import

[Ubuntu-sdk-bugs] [Bug 1638517] Re: Mir-backed InputDeviceModel doesn’t work on touch device

2016-11-28 Thread Olivier Tilloy
I don’t know where that code lives. https://code.launchpad.net/ubuntu/+source/qtsystems-opensource-src/ doesn’t have the latest changes it seems. Timo would know. -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to

[Ubuntu-sdk-bugs] [Bug 1638517] Re: Mir-backed InputDeviceModel doesn’t work on touch device

2016-11-28 Thread Olivier Tilloy
@Lorn: no need for webbrowser-app, the issue can be reliably reproduced with the standalone QML example in comment #1. I just tested on arale with the latest rc-proposed image, saved the example as /tmp/test.qml and ran it like so: phablet@ubuntu-phablet:/tmp$ qmlscene

[Ubuntu-sdk-bugs] [Bug 1583079] Re: Drop dependencies on qtdeclarative5-* transitional packages

2016-11-15 Thread Olivier Tilloy
** Also affects: unity8 (Ubuntu) Importance: Undecided Status: New ** Changed in: unity8 (Ubuntu) Status: New => In Progress ** Changed in: unity8 (Ubuntu) Assignee: (unassigned) => Olivier Tilloy (osomon) -- You received this bug notification because you are a

[Ubuntu-sdk-bugs] [Bug 1638517] Re: Mir-backed InputDeviceModel doesn’t work on touch device

2016-11-02 Thread Olivier Tilloy
I can reliably reproduce the issue with the following standalone example: import QtQuick 2.4 import QtSystemInfo 5.5 Item { InputDeviceModel { filter: InputInfo.Keyboard onCountChanged: console.log("keyboard count:", count) } } -- You received this bug notification because you are a

[Ubuntu-sdk-bugs] [Bug 1638517] [NEW] Mir-backed InputDeviceModel doesn’t work on touch device

2016-11-02 Thread Olivier Tilloy
Public bug reported: I’ve prepared a branch of webbrowser-app that makes use of the latest qml-module-qtsysteminfo for input device detection (https://code.launchpad.net/~osomon/webbrowser-app/use- qtsystems/+merge/309667), and when I test it on arale, I’m seeing the following error in the logs

[Ubuntu-sdk-bugs] [Bug 1606489] Re: Right clicking on the webbrowser-app location bar, the popup is blurry (e.g. Select All, Paste)

2016-09-26 Thread Olivier Tilloy
I’m seeing the same blurry contextual popup with a simple TextField anchored to the top of an item, so it seems to be an issue with the UITK itself. Only the icons are affected, not the text. import QtQuick 2.4 import Ubuntu.Components 1.3 Item { width: units.gu(40) height: units.gu(20)

[Ubuntu-sdk-bugs] [Bug 1623841] Re: 9 unit test failures in tst_QmlTests / context menus no longer displayed

2016-09-15 Thread Olivier Tilloy
And I can confirm that all 9 unit test failures in tst_QmlTests in webbrowser-app are gone when reverting to revision 2076 of the UITK’s staging branch. ** Changed in: webbrowser-app (Ubuntu) Status: In Progress => Invalid ** Summary changed: - 9 unit test failures in tst_QmlTests /

[Ubuntu-sdk-bugs] [Bug 1623841] Re: 9 unit test failures in tst_QmlTests

2016-09-15 Thread Olivier Tilloy
It looks like this could be a regression in the UITK. The following standalone example doesn’t work as expected (the popover is only a few pixels tall, no action is visible): import QtQuick 2.4 import Ubuntu.Components 1.3 import Ubuntu.Components.Popups 1.3 MouseArea { id: root width:

[Ubuntu-sdk-bugs] [Bug 1615411] Re: using surudark copy/paste text selection text/icons not visible - background color not themed

2016-08-29 Thread Olivier Tilloy
Re-targetting at webbrowser-app, the default text selection menu is not provided by Oxide, but by the Ubuntu WebView component, which is part of the Ubuntu.Web package. ** Package changed: ubuntu-ui-toolkit (Ubuntu) => webbrowser-app (Ubuntu) -- You received this bug notification because you

[Ubuntu-sdk-bugs] [Bug 1591157] Re: webbrowser-app does not honour scale setting on HiDPI display

2016-06-13 Thread Olivier Tilloy
** Package changed: ubuntu-ui-toolkit (Ubuntu) => unity-control-center (Ubuntu) -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu. https://bugs.launchpad.net/bugs/1591157 Title: webbrowser-app does not

[Ubuntu-sdk-bugs] [Bug 1591157] Re: webbrowser-app does not honour scale setting on HiDPI display

2016-06-10 Thread Olivier Tilloy
** Also affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status: New ** Changed in: webbrowser-app (Ubuntu) Status: Confirmed => Invalid ** Also affects: oxide Importance: Undecided Status: New -- You received this bug notification because you are a member

[Ubuntu-sdk-bugs] [Bug 1554447] Re: 4 webbrowser-app unit test failures with staging UITK

2016-06-06 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu. https://bugs.launchpad.net/bugs/1554447 Title: 4 webbrowser-app unit test

[Ubuntu-sdk-bugs] [Bug 1585285] Re: Creating or switching to a new tab feels slow

2016-05-27 Thread Olivier Tilloy
. ** Changed in: webbrowser-app (Ubuntu) Importance: Undecided => High ** Changed in: webbrowser-app (Ubuntu) Assignee: (unassigned) => Olivier Tilloy (osomon) ** Also affects: qtbase-opensource-src (Ubuntu) Importance: Undecided Status: New -- You received this bug notifi

[Ubuntu-sdk-bugs] [Bug 1583985] Re: qmlplugindump for any module importing Ubuntu.Components always exposes UbuntuColors

2016-05-20 Thread Olivier Tilloy
Additionally, as can be seen here, the qml types info for several other modules already include the UbuntuColors component: osomon@bribon:/usr/lib/x86_64-linux-gnu/qt5/qml$ grep -rn \"UbuntuColors\" Ubuntu/PerformanceMetrics/plugins.qmltypes:75:name: "UbuntuColors"

[Ubuntu-sdk-bugs] [Bug 1583985] [NEW] qmlplugindump for any module importing Ubuntu.Components always exposes UbuntuColors

2016-05-20 Thread Olivier Tilloy
Public bug reported: Not sure whether that’s a bug in the qmlplugindump tool itself, or in the UITK. When invoking qmlplugindump on any module that imports Ubuntu.Components, the resulting typeinfo always exposes the UbuntuColors component: Component { prototype: "QObject"

[Ubuntu-sdk-bugs] [Bug 1545802] Re: activeFocus not being forwarded to TextInput inside TextField

2016-04-13 Thread Olivier Tilloy
** Also affects: canonical-devices-system-image Importance: Undecided Status: New ** Changed in: canonical-devices-system-image Status: New => Fix Committed -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to

[Ubuntu-sdk-bugs] [Bug 1534112] Re: Can select multiple files in downloads view when only one expected

2016-04-13 Thread Olivier Tilloy
** Also affects: canonical-devices-system-image Importance: Undecided Status: New ** Changed in: canonical-devices-system-image Status: New => Fix Committed -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to

[Ubuntu-sdk-bugs] [Bug 1567377] Re: Select text popup not localized

2016-04-10 Thread Olivier Tilloy
(may be related: bug #1566341) ** Changed in: webbrowser-app (Ubuntu) Status: Triaged => Invalid ** Also affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status: New ** Changed in: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided => High -- You received this bug

[Ubuntu-sdk-bugs] [Bug 1545802] Re: activeFocus not being forwarded to TextInput inside TextField

2016-04-08 Thread Olivier Tilloy
: (unassigned) => Olivier Tilloy (osomon) ** Changed in: webbrowser-app (Ubuntu) Importance: Undecided => High ** Changed in: webbrowser-app (Ubuntu) Status: New => In Progress -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is s

[Ubuntu-sdk-bugs] [Bug 1534112] Re: Can select multiple files in downloads view when only one expected

2016-03-24 Thread Olivier Tilloy
So it appears it’s not a bug in the UITK, but in the way it is being used in the browser and in the standalone example (see comment #1). Changing ViewItems.selectedIndices in onSelectedChanged is not a good idea. I came up with a different approach which solves that issue: import QtQuick 2.4

[Ubuntu-sdk-bugs] [Bug 1342031] Re: Rename QML modules to follow qml-module-foo naming

2016-03-19 Thread Olivier Tilloy
** Also affects: oxide-qt (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtsensors-opensource-src in Ubuntu. https://bugs.launchpad.net/bugs/1342031 Title: Rename QML

[Ubuntu-sdk-bugs] [Bug 1554447] [NEW] 4 webbrowser-app unit test failures with staging UITK

2016-03-08 Thread Olivier Tilloy
Public bug reported: Running webbrowser-app’s unit tests with the latest staging branch of the UITK as of today (lp:~ubuntu-sdk-team/ubuntu-ui-toolkit/staging at revision 1885), I’m seeing 4 unit test failures (see full log attached). Looking into those failures, it appears that they all have

[Ubuntu-sdk-bugs] [Bug 1553551] [NEW] qtdeclarative5-ubuntu-ui-toolkit-plugin transitional package needs to depend on qml-module-ubuntu-performancemetrics, qml-module-ubuntu-layouts and qml-module-ubu

2016-03-05 Thread Olivier Tilloy
Public bug reported: Since http://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui- toolkit/staging/revision/1882, qtdeclarative5-ubuntu-ui-toolkit-plugin was renamed to qml-module-ubuntu-components and was split up into several binary packages. qtdeclarative5-ubuntu-ui-toolkit-plugin is now a

[Ubuntu-sdk-bugs] [Bug 1342031] Re: Rename QML modules to follow qml-module-foo naming

2016-03-04 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu) Status: Confirmed => In Progress -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtmultimedia-opensource-src in Ubuntu. https://bugs.launchpad.net/bugs/1342031 Title: Rename QML

[Ubuntu-sdk-bugs] [Bug 1342031] Re: Rename QML modules to follow qml-module-foo naming

2016-03-04 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu) Assignee: (unassigned) => Olivier Tilloy (osomon) -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtmultimedia-opensource-src in Ubuntu. https://bugs.launchpad.net/bugs/1342031 Ti

[Ubuntu-sdk-bugs] [Bug 1551145] Re: [regression] unit test failures after Qt update

2016-03-03 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu) Status: Confirmed => Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtbase-opensource-src in Ubuntu. https://bugs.launchpad.net/bugs/1551145 Title: [regression] unit test

[Ubuntu-sdk-bugs] [Bug 1551145] Re: [regression] unit test failures after Qt update

2016-02-29 Thread Olivier Tilloy
** Also affects: qtbase-opensource-src (Ubuntu) Importance: Undecided Status: New ** Changed in: qtbase-opensource-src (Ubuntu) Importance: Undecided => Critical -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to

[Ubuntu-sdk-bugs] [Bug 1459362] Re: SwipeArea lets touch events through before a drag is detected

2016-02-24 Thread Olivier Tilloy
** Changed in: oxide Status: In Progress => Fix Released ** Changed in: oxide Milestone: None => branch-1.14 -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu.

[Ubuntu-sdk-bugs] [Bug 1546346] Re: [touch] No way to go to beginning of URL in address bar

2016-02-18 Thread Olivier Tilloy
I’ve managed to track down the problem to the x coordinate of the TextField not being an integer. This seems to be a bug in the UITK. I can reliably reproduce the issue with the following standalone example: import QtQuick 2.4 import Ubuntu.Components 1.3 Item { TextField { id: textField1

[Ubuntu-sdk-bugs] [Bug 1546677] [NEW] Popovers doesn’t allow overriding onEscapePressed

2016-02-17 Thread Olivier Tilloy
Public bug reported: With the fix for bug #1523828, popovers are automatically closed when ESC is pressed. This is a good default behaviour, however the implementation is unfortunate: because the escapePressed handler is defined on the foreground (a child item of the root popover), app developers

[Ubuntu-sdk-bugs] [Bug 1545802] [NEW] TextInput inside TextField not being forwarded activeFocus

2016-02-15 Thread Olivier Tilloy
Public bug reported: Haven’t managed to reproduce with a standalone example yet, but I can reliably reproduce the following issue with the browser app on a tablet with a bluetooth keyboard connected (this needs to be on a tablet so that the wide layout of the app is used, for example with a Nexus

[Ubuntu-sdk-bugs] [Bug 1459362] Re: DirectionalDragArea lets a long press event through when a drag is detected

2016-01-19 Thread Olivier Tilloy
** Changed in: unity8 (Ubuntu) Assignee: Daniel d'Andrada (dandrader) => (unassigned) ** Changed in: unity8 (Ubuntu) Status: Incomplete => New ** Package changed: unity8 (Ubuntu) => ubuntu-ui-toolkit (Ubuntu) ** Summary changed: - DirectionalDragArea lets a long press event through

[Ubuntu-sdk-bugs] [Bug 1459362] Re: SwipeArea lets touch events through before a drag is detected

2016-01-19 Thread Olivier Tilloy
oxide Assignee: (unassigned) => Olivier Tilloy (osomon) -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu. https://bugs.launchpad.net/bugs/1459362 Title: SwipeArea lets touch events through befo

[Ubuntu-sdk-bugs] [Bug 1534112] Re: Can select multiple files in downloads view when only one expected

2016-01-14 Thread Olivier Tilloy
I can reproduce the problem outside of the browser app, with the following standalone QML example: import QtQuick 2.4 import Ubuntu.Components 1.3 ListView { id: listview width: 300 height: 120 model: 2 delegate: ListItem { selectMode: true Label { anchors.centerIn:

[Ubuntu-sdk-bugs] [Bug 1531293] Re: [desktop] Address text is poorly aligned

2016-01-05 Thread Olivier Tilloy
This appears to be an issue in the TextField component of the UITK: the text should be vertically centered, but instead it’s anchored to the top of the field. ** Package changed: webbrowser-app (Ubuntu) => ubuntu-ui-toolkit (Ubuntu) -- You received this bug notification because you are a member

[Ubuntu-sdk-bugs] [Bug 1530859] Re: Phone with bt keyboard connected doesn't trigger ctrl+key if the location/find bar is active

2016-01-04 Thread Olivier Tilloy
Tentatively re-targetting to UITK. Please re-target accordingly if it turns out the issue is somewhere else in the stack. ** Package changed: webbrowser-app (Ubuntu) => ubuntu-ui-toolkit (Ubuntu) -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is

[Ubuntu-sdk-bugs] [Bug 1528506] [NEW] Failed to get image from provider: image://theme/clear-search

2015-12-22 Thread Olivier Tilloy
Public bug reported: With the latest rc-proposed touch image, I’m not seeing the clear icon in the browser’s address bar, and the following error is in the logs: file:///usr/lib/arm-linux- gnueabihf/qt5/qml/Ubuntu/Components/1.0/Icon.qml:37:5: QML QQuickImage: Failed to get image from provider:

[Ubuntu-sdk-bugs] [Bug 1526940] Re: Regression: QmlTests::BookmarksViewWide::test_delete_bookmark() is now failing

2015-12-16 Thread Olivier Tilloy
the right but the confirm action is only partially visible, it’s offset by most of its width to the left. Specifying a delay of 1 is enough to trigger the expected behaviour. ** Changed in: webbrowser-app (Ubuntu) Assignee: (unassigned) => Olivier Tilloy (osomon) ** Changed in: webbrowser-app (Ubuntu)

[Ubuntu-sdk-bugs] [Bug 1435521] Re: qmlplugindump crashed with SIGABRT in oxide::qt::WebViewAdapter::context()

2015-12-04 Thread Olivier Tilloy
*** This bug is a duplicate of bug 1341565 *** https://bugs.launchpad.net/bugs/1341565 ** This bug is no longer a duplicate of bug 1419616 qmlplugindump crashed with SIGABRT in oxide::WebView::GetBrowserContext() ** This bug has been marked a duplicate of bug 1341565 Should include

[Ubuntu-sdk-bugs] [Bug 1443872] Re: qmlplugindump crashed with SIGABRT in oxide::qt::WebViewAdapter::context()

2015-12-04 Thread Olivier Tilloy
*** This bug is a duplicate of bug 1341565 *** https://bugs.launchpad.net/bugs/1341565 ** This bug is no longer a duplicate of bug 1419616 qmlplugindump crashed with SIGABRT in oxide::WebView::GetBrowserContext() ** This bug has been marked a duplicate of bug 1341565 Should include

[Ubuntu-sdk-bugs] [Bug 1479714] Re: /usr/lib/x86_64-linux-gnu/qt5/bin/qmlplugindump:6:oxide::WebView::GetBrowserContext:GetContext:oxide::qt::WebView::context:OxideQQuickWebView::~OxideQQuickWebView:Q

2015-12-04 Thread Olivier Tilloy
*** This bug is a duplicate of bug 1341565 *** https://bugs.launchpad.net/bugs/1341565 ** This bug is no longer a duplicate of bug 1419616 qmlplugindump crashed with SIGABRT in oxide::WebView::GetBrowserContext() ** This bug has been marked a duplicate of bug 1341565 Should include

[Ubuntu-sdk-bugs] [Bug 1430016] Re: qmlplugindump crashed with SIGABRT in oxide::qt::WebViewAdapter::context()

2015-12-04 Thread Olivier Tilloy
*** This bug is a duplicate of bug 1341565 *** https://bugs.launchpad.net/bugs/1341565 ** This bug is no longer a duplicate of bug 1419616 qmlplugindump crashed with SIGABRT in oxide::WebView::GetBrowserContext() ** This bug has been marked a duplicate of bug 1341565 Should include

[Ubuntu-sdk-bugs] [Bug 1422805] Re: qmlplugindump crash when QtCreator opens unity8's CMakeFiles.txt

2015-12-04 Thread Olivier Tilloy
*** This bug is a duplicate of bug 1341565 *** https://bugs.launchpad.net/bugs/1341565 ** This bug is no longer a duplicate of bug 1419616 qmlplugindump crashed with SIGABRT in oxide::WebView::GetBrowserContext() ** This bug has been marked a duplicate of bug 1341565 Should include

[Ubuntu-sdk-bugs] [Bug 1480194] Re: Amazon webapp doesn't follow the scale factor for HiDPI display.

2015-11-06 Thread Olivier Tilloy
It’s not just the webview that doesn’t scale up, it’s the entire browser UI. And any UI written in QML, for that matter (UIs using traditional QWidgets scale up correctly). This setting should probably be propagated by Qt to the QML scene graph, and the oxide WebView (being a QQuickItem) would

[Ubuntu-sdk-bugs] [Bug 1498539] Re: FaviconFetcherTests random failures in silo builds

2015-09-22 Thread Olivier Tilloy
Mirv suggested that https://launchpadlibrarian.net/218473113/qtbase- opensource-src_5.4.1%2Bdfsg-2ubuntu8_5.4.1%2Bdfsg-2ubuntu9.diff.gz could very well be when the test started failing, and it looks plausible. Not sure what conclusions to draw from the diff though. Is the issue in the way the test

[Ubuntu-sdk-bugs] [Bug 1495451] [NEW] Page pushed on a stack gets instantiated twice, and PageStack.push() returns null

2015-09-14 Thread Olivier Tilloy
Public bug reported: It looks to me like a regression introduced by the latest UITK landing (1.3.1627+15.04.20150908-0ubuntu1). See the attached standalone reproducer (run it with qmlscene). In a MainView, pushing a page component on a page stack instantiates the page twice. Additionally, the

[Ubuntu-sdk-bugs] [Bug 1495482] Re: SortFilterModel cannot sort by a numeric role

2015-09-14 Thread Olivier Tilloy
This is invalid. For future reference, the situation is slightly more complex. I’m trying to do something like that: SortFilterModel { sort.property: "blah" sort.order: Qt.DescendingOrder model: CustomSortFilterModel { sourceModel: CustomListModel {} } } where

[Ubuntu-sdk-bugs] [Bug 1495641] [NEW] SortFilterModel::get() doesn’t work with custom roles whose keys don’t start at 0

2015-09-14 Thread Olivier Tilloy
Public bug reported: (very similar to bug #1485674, with a similar fix too) QSortFilterProxyModelQML::get() doesn’t consider custom roles with keys that don’t start at 0. ** Affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Assignee: Olivier Tilloy (osomon) Status

[Ubuntu-sdk-bugs] [Bug 1493857] [NEW] camera-app goes black, won’t work until the phone is rebooted

2015-09-09 Thread Olivier Tilloy
Public bug reported: The following scenario has happened to me a few times since I use the BQ aquaris e4.5 as my main phone: - opened the camera app, took a few pictures, viewed them in the photoroll, shared one via telegram (as a result the camera app goes into the background) - carried out

[Ubuntu-sdk-bugs] [Bug 1492328] [NEW] header icon color should match title label color when backgroundColor is set

2015-09-04 Thread Olivier Tilloy
Public bug reported: If I set a custom background color on a MainView, the color of the title label in the header is computed to make the title readable, but the color of the header icons isn’t, and it may be difficult to see them. See the attached standalone reproducer, where the background

[Ubuntu-sdk-bugs] [Bug 1488540] [NEW] Right clicks go through popovers

2015-08-25 Thread Olivier Tilloy
Public bug reported: When displaying e.g. an ActionSelectionPopover (but this is valid for generic Popovers too), clicking anywhere outside of the popover will dismiss it by default. A left-click inside the popover will typically trigger the action under the cursor. But a right-click is not

[Ubuntu-sdk-bugs] [Bug 1483908] Re: Cannot copy URLs longer than display

2015-08-18 Thread Olivier Tilloy
Confirmed, but this is not specific to the browser: any standard TextField from the UITK is affected. I’m attaching a simple standalone example that can be launched with qmlscene on a device to observe the issue. ** Also affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status:

[Ubuntu-sdk-bugs] [Bug 1485674] [NEW] SortFilterModel doesn’t work with custom roles whose keys don’t start at 0

2015-08-17 Thread Olivier Tilloy
Public bug reported: I wanted to replace a custom C++ model in webbrowser-app by a QML SortFilterModel. My custom model simply does sorting by descending order on a given role, but this didn’t work. I figured out the reason for this: the source model being sorted has custom roles, and their keys

[Ubuntu-sdk-bugs] [Bug 1483708] [NEW] Popovers became very narrow in UITK 1.3

2015-08-11 Thread Olivier Tilloy
Public bug reported: I recently updated all the imports of Ubuntu.Components (and submodules) to 1.3 in webbrowser-app. One visible side-effect of that is that popovers have become much narrower than they used to be. The browser app uses popovers for context menus (triggered by a long press or a

[Ubuntu-sdk-bugs] [Bug 1483279] [NEW] Unit tests fail where mouseClick() is used to simulate a click event on a MouseArea which is a descendant of a TextField

2015-08-10 Thread Olivier Tilloy
Public bug reported: This appears to be a regression in version 1.3 of the UITK. The browser has an AddressBar component which contains a TextField, and the secondaryItem for this TextField is a MouseArea (for toggling the bookmarked status of the current address). This component is unit tested,

[Ubuntu-sdk-bugs] [Bug 1371207] Re: [Browser] when focusing on the URL field, copy/cut/paste options are not displayed

2015-08-05 Thread Olivier Tilloy
@Christian: I don’t think the toolkit is misbehaving here. Marking the ubuntu-ui-toolkit task invalid. ** Changed in: webbrowser-app Status: Fix Released = Confirmed ** No longer affects: webbrowser-app ** Changed in: webbrowser-app (Ubuntu) Importance: Undecided = Medium ** Changed

[Ubuntu-sdk-bugs] [Bug 1470258] Re: browser is up side down on rotated screens

2015-07-06 Thread Olivier Tilloy
This issue seems to affect all apps using the Ubuntu’s UITK automaticOrientation feature. I’m attaching a screenshot that demonstrates this with a sample app. ** Attachment added: upside-down.png

[Ubuntu-sdk-bugs] [Bug 1438419] Re: Transparent confirmation dialog

2015-06-16 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu RTM) Status: Confirmed = Fix Released -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu. https://bugs.launchpad.net/bugs/1438419 Title: Transparent

[Ubuntu-sdk-bugs] [Bug 1425379] Re: touch browser crashes when invoking contextual menu in landscape orientation

2015-06-08 Thread Olivier Tilloy
** No longer affects: webbrowser-app ** Changed in: webbrowser-app (Ubuntu) Importance: Undecided = Critical -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu. https://bugs.launchpad.net/bugs/1425379

[Ubuntu-sdk-bugs] [Bug 1461501] [NEW] Setting ListItem.selected doesn’t update the checkbox state

2015-06-03 Thread Olivier Tilloy
Public bug reported: Since yesterday webbrowser-app in wily uses the new ListItem API available in version 1.2 of the UITK. I’ve noticed one bug when a list is in multi-selection mode, which I’ve isolated in the attached test file. To reproduce the issue: - launch the scene with qmlscene -

[Ubuntu-sdk-bugs] [Bug 1457424] Re: Please update icon (May 2015)

2015-06-02 Thread Olivier Tilloy
** Changed in: webbrowser-app Status: In Progress = Fix Released ** Changed in: webbrowser-app (Ubuntu) Assignee: (unassigned) = Olivier Tilloy (osomon) -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtcreator-plugin

[Ubuntu-sdk-bugs] [Bug 1442851] Re: [browser] Setting labels ellipsized on phone screen in portrait orientation

2015-05-19 Thread Olivier Tilloy
The browser side of things is fixed (now using checkboxes instead of switches). Remaining work will have to happen in the UITK. ** Also affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status: New ** Changed in: webbrowser-app Status: In Progress = Fix Released -- You

[Ubuntu-sdk-bugs] [Bug 1440789] Re: copy paste on the address field is close to impossible

2015-04-07 Thread Olivier Tilloy
This is not a browser-specific issue. For any one-line TextField that contains more text than fits on the screen, the selection and copy/paste mechanism is mostly non-functional. ** Project changed: webbrowser-app = ubuntu-ui-toolkit (Ubuntu) ** Changed in: ubuntu-ui-toolkit (Ubuntu)

[Ubuntu-sdk-bugs] [Bug 1438419] Re: Transparent confirmation dialog

2015-04-01 Thread Olivier Tilloy
Indeed, I can reproduce the bug on RTM. Re-targetting to ubuntu-rtm. ** Package changed: webbrowser-app (Ubuntu) = webbrowser-app (Ubuntu RTM) ** Changed in: webbrowser-app (Ubuntu RTM) Status: New = Confirmed -- You received this bug notification because you are a member of Ubuntu SDK

[Ubuntu-sdk-bugs] [Bug 1435805] Re: Expose DirectionalDragArea in the UITK

2015-03-24 Thread Olivier Tilloy
Note that the browser application now uses a local copy of unity8’s DirectionalDragArea to implement its bottom-edge interactions. This means code duplication, on top of depending on private Qt headers, so it’s really not a comfortable situation. ** Also affects: unity8 (Ubuntu) Importance:

[Ubuntu-sdk-bugs] [Bug 1425379] Re: touch browser crashes when invoking contextual menu in landscape orientation

2015-02-25 Thread Olivier Tilloy
This seems to be an issue in the UITK, I can reproduce with the following sample scene: import QtQuick 2.0 import Ubuntu.Components 1.1 import Ubuntu.Components.Popups 1.0 OrientationHelper { MouseArea { anchors.fill: parent onClicked: { PopupUtils.open(popover)

[Ubuntu-sdk-bugs] [Bug 1424588] Re: unable to center popover in caller

2015-02-23 Thread Olivier Tilloy
Attaching a screenshot of the result. ** Attachment added: popover.png https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1424588/+attachment/4325345/+files/popover.png ** Also affects: ubuntu-ux Importance: Undecided Status: New -- You received this bug

[Ubuntu-sdk-bugs] [Bug 1424588] [NEW] unable to center popover in caller

2015-02-23 Thread Olivier Tilloy
Public bug reported: The design for the browser app’s contextual menu requires the popover to be centered inside its caller (the webview). See https://docs.google.com/a/canonical.com/presentation/d/1woHjO8K4iqyVZZlfQ4BXL0DhYbwkEmZ7wvcUhYzHDRk/edit#slide=id.g34608d763_079 for reference. The

[Ubuntu-sdk-bugs] [Bug 1417118] Re: test_looses_focus_when_reloading fails when run on desktop

2015-02-04 Thread Olivier Tilloy
** Also affects: autopilot Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu. https://bugs.launchpad.net/bugs/1417118 Title: test_looses_focus_when_reloading

[Ubuntu-sdk-bugs] [Bug 1413194] Re: Cut/Copy/Paste options displayed off the top of the screen from the addressbar

2015-01-21 Thread Olivier Tilloy
This is a rather recent regression, most likely in the UITK (as the issue is not present on RTM, although webbrowser-app was recently synced back from vivid to RTM, so both versions are virtually identical). ** Also affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status: New

[Ubuntu-sdk-bugs] [Bug 1403601] Re: Ubuntu webbrowser crashes unexpectedly while browsing casually

2014-12-18 Thread Olivier Tilloy
That looks like a bug in the UITK. Re-targetting appropriately. ** Package changed: webbrowser-app (Ubuntu) = ubuntu-ui-toolkit (Ubuntu) -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu.

[Ubuntu-sdk-bugs] [Bug 1371207] Re: [Browser] when focusing on the URL field, copy/cut/paste options are not displayed

2014-12-02 Thread Olivier Tilloy
** Also affects: webbrowser-app (Ubuntu RTM) Importance: Undecided Status: New ** Changed in: webbrowser-app (Ubuntu RTM) Status: New = Confirmed -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit

[Ubuntu-sdk-bugs] [Bug 1379840] [NEW] corrupted QML cache for messaging app makes it crash at startup

2014-10-10 Thread Olivier Tilloy
Public bug reported: This is on krillin image #95 from the 14.09-proposed channel. How I got there: - sent an MMS with a vodafone SIM card - switched off the phone, removed the SIM, inserted a movistar SIM in place, switched the phone back on - unlocked the SIM by entering pin, tapped on

[Ubuntu-sdk-bugs] [Bug 1371166] Re: HERE location does not work in browser, but works in osmtouch

2014-09-30 Thread Olivier Tilloy
** Changed in: oxide/1.2 Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtubuntu-sensors in Ubuntu. https://bugs.launchpad.net/bugs/1371166 Title: HERE location does not work in

[Ubuntu-sdk-bugs] [Bug 1279302] Re: Default HTML5 template app fails to load : Cannot read property 'classList' of null

2014-02-12 Thread Olivier Tilloy
Looks like this is already fixed in qtcreator-plugin-ubuntu trunk. All it needs is a release, it seems. ** Package changed: ubuntu-html5-theme (Ubuntu) = qtcreator-plugin- ubuntu (Ubuntu) -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is