[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

Daniel van Vugt  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #8 from Daniel van Vugt  ---
OK. Happy to forget this bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

--- Comment #7 from Peter Hutterer  ---
https://wayland.freedesktop.org/libinput/doc/latest/clickpad_softbuttons.html

Physical click in bottom right corner when software buttons are enabled =>
right click, otherwise always left click. Clickfinger requires 2 fingers to
trigger a right click.

Tap anywhere with a single finger (when enabled) -> left click, tap with two
fingers -> right click.

>From comment #0:
> 3. Tap on bottom-right area.
> Expected: Right click emulated

This feature doesn't exist. You can click in the bottom right corner and get a
right click, but tapping always produces a left click.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

--- Comment #6 from Daniel van Vugt  ---
This bug doesn't bother me personally. I was only trying to reproduce the
downstream issue but now realise I misread "enable" as "disable". So maybe I
have the wrong bug link.

That said, I'm still a little curious about this one because it sounds like a
contradiction between:

Click methods:button-areas *clickfinger

and

"do you expect a tap on the bottom right button to be a right click? If so,
that feature doesn't exist in libinput."

It does work, for clicks but not for taps. So are you saying it was mutter
doing that emulation all along?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

--- Comment #5 from Peter Hutterer  ---
all the libinput tools create their own context, nothing but the compositor has
access to the compositor's context. So libinput list-devices shows the default
settings, libinput debug-events uses the default settings unless specified
otherwise.

Apple touchpads have clickfinger enabled by default, so that's why the
bottom-right doesn't work as right click.

uhm, and I just realised: do you expect a tap on the bottom right button to be
a right click? If so, that feature doesn't exist in libinput.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

--- Comment #4 from Daniel van Vugt  ---
It seems there's an inconsistency here:

Gnome Settings > Devices > Mouse & Touchpad > Tap to Click = ON
gnome-tweak-tool > Keyboard & Mouse > Touchpad > Mouse Click Emulation = Area

but...

Device:   Apple Wireless Trackpad
Kernel:   /dev/input/event15
Group:7
Seat: seat0, default
Size: 132x112mm
Capabilities: pointer gesture
Tap-to-click: disabled   < off?
Tap-and-drag: enabled
Tap drag lock:disabled
Left-handed:  disabled
Nat.scrolling:disabled
Middle emulation: disabled
Calibration:  n/a
Scroll methods:   *two-finger edge 
Click methods:button-areas *clickfinger <--- wrong one?
Disable-w-typing: n/a
Accel profiles:   none
Rotation: n/a

Is that correct for libinput to natively show its defaults rather than the
gnome settings? or a bug?

Can you show me which command you'd like run next?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

--- Comment #3 from Peter Hutterer  ---
Tapping and click method is handled in libinput. What device is this? maybe
it's one of the ones where clickfinger is the default? libinput list-devices
will tell you, --set-click-method=buttons will force it in debug-events.

The --verbose argument will also tell you what state the various pieces are in.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

--- Comment #2 from Daniel van Vugt  ---
Hmm, sounds like right-click emulation is higher level because libinput doesn't
see the difference...

Tested both libinput 1.10.1-1 (debian/ubuntu) and libinput master (d786b55):

Tap on bottom right area (shell incorrectly does a left click)
event15  POINTER_BUTTON   +74.96s   BTN_LEFT (272) pressed, seat count: 1
event15  POINTER_BUTTON   +75.06s   BTN_LEFT (272) released, seat count: 0

Click on bottom-right area (shell correctly does a right click)
event15  POINTER_BUTTON+3.94s   BTN_LEFT (272) pressed, seat count: 1
event15  POINTER_BUTTON+4.12s   BTN_LEFT (272) released, seat count: 0

Is the right click emulation done in mutter then?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

Peter Hutterer  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||peter.hutte...@who-t.net

--- Comment #1 from Peter Hutterer  ---
Can you reproduce this with libinput debug-events --enable-tap? Certainly works
here for both master and 1.10.2

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

Bug ID: 105446
   Summary: Tap to click doesn't work with bottom-right area mode
   Product: Wayland
   Version: unspecified
  Hardware: Other
OS: All
Status: NEW
  Severity: normal
  Priority: medium
 Component: libinput
  Assignee: wayland-bugs@lists.freedesktop.org
  Reporter: daniel.van.v...@canonical.com

Tap to click doesn't work with bottom-right area mode.

1. Settings > Devices > Mouse & Touchpad > Tap to Click = ON
2. gnome-tweak-tool > Keyboard & Mouse > Touchpad > Mouse Click Emulation =
Area
3. Tap on bottom-right area.

Expected: Right click emulated
Observed: Left click emulated

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs


[Wayland-bugs] [Bug 105446] Tap to click doesn't work with bottom-right area mode

2018-03-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=105446

Daniel van Vugt  changed:

   What|Removed |Added

   See Also||https://launchpad.net/bugs/
   ||1603183

-- 
You are receiving this mail because:
You are the assignee for the bug.___
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs