Comment 2 for bug 1606489

Revision history for this message
Olivier Tilloy (osomon) wrote : Re: Right clicking on the webbrowser-app location bar, the popup is blurry (e.g. Select All, Paste)

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)
  TextField {
    anchors {
      margins:units.gu(2)
      left: parent.left
      right: parent.right
      top: parent.top
    }
    text: "lorem ipsum"
  }
}