0

Issue I am facing with Qt 5.1.1 applications is that, the touch precision on the widgets are not accurate and I need to touch a little bit above the actual widget area to trigger the event (clicked).

In order to make the touch interface work, I am using 1920x1080 resolution and 11 inch display. Software - Qt -5.1.1, Wayland - 1.1.0 and qtwayland plugin.

Any clue where the thing might go wrong? Any suggestion is appreciated.

László Papp
  • 51,870
  • 39
  • 111
  • 135
Bhush
  • 58
  • 10

1 Answers1

0

If you use Wayland to render your application, i.e. launch application by -platform wayland option, the coordinates of touch event is provided by compositor(e.g. weston)via wayland protocol, therefore you should check those coordinates grabbed by compositor.

You can use debug tool provided by libinput to find what is wrong.

gzh
  • 3,507
  • 2
  • 19
  • 23
  • 1
    “While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes.” – Kevin Feb 02 '16 at 03:19