[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2019-06-23 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

--- Comment #17 from Nate Graham  ---
This was fixed ages ago. If you're using a distro that ships old software, bug
them to backport the commit that fixed the issue, which is visible in the
"Latest Commit" field near the top-right.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2019-06-20 Thread Rich
https://bugs.kde.org/show_bug.cgi?id=395722

Rich  changed:

   What|Removed |Added

 CC||r...@welovemicro.com

--- Comment #16 from Rich  ---
(In reply to Adrian from comment #8)
> Similar situation in up-to-date KDE in Kubuntu 18.04.
> I have "Mouse click emulation" option enabled so:
> - tap one finger = left mouse button
> - tap two fingers = right mouse button
> - two fingers slide = scroll
> Unfortunately after back from suspend only "tap one finger" works.
> Workaround of this problem is:
> "sudo modprobe -r psmouse" before suspend and
> "sudo modprobe psmouse" after resume from suspend
> Script for this in here:
> https://ubuntuforums.org/showthread.php?t=2182922=2

Same issue for me. I fixed by running modprobe as you mention.

Create a file called whatever you want (trackpad in this case)

```
cat /usr/lib/systemd/system-sleep/trackpad 
#!bin/bash
if [ "${1}" == "pre" ]; then
modprobe -r psmouse ;;
elif [ "${1}" == "post" ]; then
modprobe psmouse ;;
fi
```

Then make it executable:
```
chmod +x /usr/lib/systemd/system-sleep/trackpad
```

Many thanks for your help!!!

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-12-09 Thread Julius B .
https://bugs.kde.org/show_bug.cgi?id=395722

Julius B.  changed:

   What|Removed |Added

 CC||abugrepor...@tuta.io

--- Comment #15 from Julius B.  ---
*** Bug 398999 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-12-09 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

Nate Graham  changed:

   What|Removed |Added

 CC||wosk...@yahoo.de

--- Comment #14 from Nate Graham  ---
*** Bug 342929 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-12-09 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

Nate Graham  changed:

   What|Removed |Added

 CC||andydecle...@gmail.com

--- Comment #13 from Nate Graham  ---
*** Bug 370202 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-10-20 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

Nate Graham  changed:

   What|Removed |Added

 CC||alvind...@gmail.com

--- Comment #12 from Nate Graham  ---
*** Bug 400069 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-10-12 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

Nate Graham  changed:

   What|Removed |Added

 CC||mik...@laposte.net

--- Comment #11 from Nate Graham  ---
*** Bug 399729 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-09-12 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

Nate Graham  changed:

   What|Removed |Added

   Version Fixed In||5.14.0

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-09-12 Thread Roman Gilg
https://bugs.kde.org/show_bug.cgi?id=395722

Roman Gilg  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
  Latest Commit||https://commits.kde.org/pla
   ||sma-desktop/a4c724173b5c6a5
   ||9331587f2e5db746dffbabdc6
 Resolution|--- |FIXED

--- Comment #10 from Roman Gilg  ---
Git commit a4c724173b5c6a59331587f2e5db746dffbabdc6 by Roman Gilg.
Committed on 12/09/2018 at 17:29.
Pushed by romangilg into branch 'master'.

[Mouse KCM] Avoid changes to touchpads in libinput backend

Summary:
Similar to evdev backend we need to ignore touchpad devices explicitly in the
libinput backend because these are also pointer devices.

XInput2 can do this in theory via input classes, but my touchpad did not set
the class correctly. So just switch to using XInput like in the evdev backend
to query all pointer devices and then use the XI_TOUCHPAD atom to filter out
touchpads.
Related: bug 395401, bug 396269

Test Plan: Manually

Reviewers: #plasma, hein

Reviewed By: #plasma, hein

Subscribers: acrouthamel, ngraham, plasma-devel

Tags: #plasma

Differential Revision: https://phabricator.kde.org/D15256

M  +20   -12   kcms/mouse/backends/x11/x11_libinput_dummydevice.cpp

https://commits.kde.org/plasma-desktop/a4c724173b5c6a59331587f2e5db746dffbabdc6

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-09-09 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

--- Comment #9 from Nate Graham  ---
(In reply to Adrian from comment #8)
> Similar situation in up-to-date KDE in Kubuntu 18.04.
> I have "Mouse click emulation" option enabled so:
> - tap one finger = left mouse button
> - tap two fingers = right mouse button
> - two fingers slide = scroll
> Unfortunately after back from suspend only "tap one finger" works.
> Workaround of this problem is:
> "sudo modprobe -r psmouse" before suspend and
> "sudo modprobe psmouse" after resume from suspend
> Script for this in here:
> https://ubuntuforums.org/showthread.php?t=2182922=2

That's unrelated; this bug report is about the new Libinput touchpad settings
page in Plasma 5.13, not the old one from Plasma 5.12 that you're referring to.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-09-08 Thread Adrian
https://bugs.kde.org/show_bug.cgi?id=395722

Adrian  changed:

   What|Removed |Added

 CC||adrian.swarzyn...@gmail.com

--- Comment #8 from Adrian  ---
Similar situation in up-to-date KDE in Kubuntu 18.04.
I have "Mouse click emulation" option enabled so:
- tap one finger = left mouse button
- tap two fingers = right mouse button
- two fingers slide = scroll
Unfortunately after back from suspend only "tap one finger" works.
Workaround of this problem is:
"sudo modprobe -r psmouse" before suspend and
"sudo modprobe psmouse" after resume from suspend
Script for this in here:
https://ubuntuforums.org/showthread.php?t=2182922=2

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-08-22 Thread Charlie
https://bugs.kde.org/show_bug.cgi?id=395722

Charlie  changed:

   What|Removed |Added

 CC||taylorc...@gmail.com

--- Comment #7 from Charlie  ---
I'm experiencing this bug too - it seems that the mouse settings are overriding
the touchpad settings after a suspend, as ImreL has discovered.

If I untick "Invert scroll direction" in mouse settings, then suddenly the
touchpad follows suit after a reboot and the "active settings do not match
saved settings" message appears in the touchpad settings. The same goes for
changes in the mouse acceleration; this appears to override the touchpad
acceleration.

I make do by just keeping the settings the same, but ideally it should be
otherwise. I'm on manjaro KDE, using libinput on X.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-08-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395722

glenm...@gmail.com changed:

   What|Removed |Added

 CC||glenm...@gmail.com

--- Comment #6 from glenm...@gmail.com ---
I noticed that if I leave the touchpad settings page open,scrolling doesn't
reverse after resume.  Hope this helps isolate the issue/fix

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-08-10 Thread Brandon Watkins
https://bugs.kde.org/show_bug.cgi?id=395722

Brandon Watkins  changed:

   What|Removed |Added

 CC||bwa...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-08-07 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

Nate Graham  changed:

   What|Removed |Added

   Priority|HI  |VHI

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-08-02 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395722

k...@mnetwork.co.kr changed:

   What|Removed |Added

 CC||k...@mnetwork.co.kr

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-07-21 Thread Stephan Hochdörfer
https://bugs.kde.org/show_bug.cgi?id=395722

--- Comment #5 from Stephan Hochdörfer  ---
I experienced the same problem(?) in regard to touchpad sensitivity - I wasn't
able to right click on the touchpad after suspending the laptop. Just checked
it with the latest update (18.04.3) and it seems the problem is gone for me for
now.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-07-21 Thread Stephan Hochdörfer
https://bugs.kde.org/show_bug.cgi?id=395722

Stephan Hochdörfer  changed:

   What|Removed |Added

 CC||s.hochdoer...@bitexpert.de

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-07-16 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395722

adr.fant...@gmail.com changed:

   What|Removed |Added

 CC||adr.fant...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-07-13 Thread Michael D
https://bugs.kde.org/show_bug.cgi?id=395722

Michael D  changed:

   What|Removed |Added

 CC||nortex...@gmail.com

--- Comment #4 from Michael D  ---
Mine don't reset after resuming, only after disabling the touchpad or after
connecting (and disconnecting?) a mouse (possibly via Bluetooth). Only happens
in an X session, not Wayland. Manjaro testing.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-07-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

Nate Graham  changed:

   What|Removed |Added

   Priority|NOR |HI
   Severity|normal  |major

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-07-13 Thread mthw0
https://bugs.kde.org/show_bug.cgi?id=395722

mthw0  changed:

   What|Removed |Added

 CC||jari...@hotmail.com
 Status|UNCONFIRMED |CONFIRMED
 Ever confirmed|0   |1

--- Comment #3 from mthw0  ---
I didnt notice reverse scrolling being disabled, but I experience touchpad
sensitivity being changed to very low.

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-07-07 Thread Alex Mason
https://bugs.kde.org/show_bug.cgi?id=395722

Alex Mason  changed:

   What|Removed |Added

 CC||alexmason...@outlook.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-07-03 Thread Rajeesh K V
https://bugs.kde.org/show_bug.cgi?id=395722

Rajeesh K V  changed:

   What|Removed |Added

 CC||dalji...@live.com

--- Comment #2 from Rajeesh K V  ---
*** Bug 396146 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-06-30 Thread ImreL
https://bugs.kde.org/show_bug.cgi?id=395722

ImreL  changed:

   What|Removed |Added

 CC||imre.lo...@gmail.com

--- Comment #1 from ImreL  ---
This happens to me too

seems like mouse and touchpad settings are in conflict:

when i run `kcminit mouse` it turns natural scrolling off
`kcminit kcm_touchpad` turns it on

since kcm_touchpad settings are applied before, the settings will be
overwritten.

I want to have different settings for mouse and touchpad

-- 
You are receiving this mail because:
You are watching all bug changes.

[Touchpad-KCM] [Bug 395722] touchpad settings are wrong after resuming from suspend

2018-06-27 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=395722

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org
   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=395401

-- 
You are receiving this mail because:
You are watching all bug changes.