Lenovo x1 carbon 3rd generation touchpad issues
up vote
2
down vote
favorite
I am using Lenovo x1 carbon 3rd generation with ubuntu 18.04, The touch pad is behaving weird like, If you drag the pointer down to a specific point and removes the finger from the touchpad then the pointer jumps to a random position.
An example will be closing a browser tab, Drag the pointer x and remove the finger off the pad, The pointer jumps to a random position.
Is it normal, Or is there anything which can help around.
Thanks
drivers mouse touchpad lenovo hardware
add a comment |Â
up vote
2
down vote
favorite
I am using Lenovo x1 carbon 3rd generation with ubuntu 18.04, The touch pad is behaving weird like, If you drag the pointer down to a specific point and removes the finger from the touchpad then the pointer jumps to a random position.
An example will be closing a browser tab, Drag the pointer x and remove the finger off the pad, The pointer jumps to a random position.
Is it normal, Or is there anything which can help around.
Thanks
drivers mouse touchpad lenovo hardware
It's not normal. Probably a 'libinput' issue. Since this piece of software is relatively new, latest version brings big improvement. Try to update it!
â mattia.b89
May 22 at 20:43
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am using Lenovo x1 carbon 3rd generation with ubuntu 18.04, The touch pad is behaving weird like, If you drag the pointer down to a specific point and removes the finger from the touchpad then the pointer jumps to a random position.
An example will be closing a browser tab, Drag the pointer x and remove the finger off the pad, The pointer jumps to a random position.
Is it normal, Or is there anything which can help around.
Thanks
drivers mouse touchpad lenovo hardware
I am using Lenovo x1 carbon 3rd generation with ubuntu 18.04, The touch pad is behaving weird like, If you drag the pointer down to a specific point and removes the finger from the touchpad then the pointer jumps to a random position.
An example will be closing a browser tab, Drag the pointer x and remove the finger off the pad, The pointer jumps to a random position.
Is it normal, Or is there anything which can help around.
Thanks
drivers mouse touchpad lenovo hardware
asked May 20 at 14:11
Comrade
1051312
1051312
It's not normal. Probably a 'libinput' issue. Since this piece of software is relatively new, latest version brings big improvement. Try to update it!
â mattia.b89
May 22 at 20:43
add a comment |Â
It's not normal. Probably a 'libinput' issue. Since this piece of software is relatively new, latest version brings big improvement. Try to update it!
â mattia.b89
May 22 at 20:43
It's not normal. Probably a 'libinput' issue. Since this piece of software is relatively new, latest version brings big improvement. Try to update it!
â mattia.b89
May 22 at 20:43
It's not normal. Probably a 'libinput' issue. Since this piece of software is relatively new, latest version brings big improvement. Try to update it!
â mattia.b89
May 22 at 20:43
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
The same problem forced me to switch to Synaptics driver. It's deprecated but this fact has never affected my experience.
To make your touchpad stop shaking and become more precise you may use my solution:
In /usr/share/X11/xorg.conf.d
directory I have 40-libinput.conf
with the following content:
# Match on all types of devices but joysticks
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
And 70-synaptics.conf
with:
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "PalmDetect" "1"
Option "PalmMinWidth" "8"
Option "PalmMinZ" "100"
Option "VertScrollDelta" "-125"
Option "HorizTwoFingerScroll" "on"
Option "HorizScrollDelta" "-125"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
If this file does not exist, you should create it. Notice that the number before synaptics must be greater than the number before libinput.
You should not delete 40-libinput.conf
because in this case touchpad won't work at all.
P.S. A good article in which you can find out how to configure Synaptics file - https://wiki.archlinux.org/index.php/Touchpad_Synaptics
Thanks for the answer, Let me try it. And i don't have the second file you mentioned.
â Comrade
May 27 at 9:49
@Comrade, just creating the file should be enough in most cases. However, if there are problems - check if thexserver-xorg-input-synaptics
package is installed (and install if it's not).
â Ducky
May 27 at 20:44
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
The same problem forced me to switch to Synaptics driver. It's deprecated but this fact has never affected my experience.
To make your touchpad stop shaking and become more precise you may use my solution:
In /usr/share/X11/xorg.conf.d
directory I have 40-libinput.conf
with the following content:
# Match on all types of devices but joysticks
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
And 70-synaptics.conf
with:
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "PalmDetect" "1"
Option "PalmMinWidth" "8"
Option "PalmMinZ" "100"
Option "VertScrollDelta" "-125"
Option "HorizTwoFingerScroll" "on"
Option "HorizScrollDelta" "-125"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
If this file does not exist, you should create it. Notice that the number before synaptics must be greater than the number before libinput.
You should not delete 40-libinput.conf
because in this case touchpad won't work at all.
P.S. A good article in which you can find out how to configure Synaptics file - https://wiki.archlinux.org/index.php/Touchpad_Synaptics
Thanks for the answer, Let me try it. And i don't have the second file you mentioned.
â Comrade
May 27 at 9:49
@Comrade, just creating the file should be enough in most cases. However, if there are problems - check if thexserver-xorg-input-synaptics
package is installed (and install if it's not).
â Ducky
May 27 at 20:44
add a comment |Â
up vote
0
down vote
The same problem forced me to switch to Synaptics driver. It's deprecated but this fact has never affected my experience.
To make your touchpad stop shaking and become more precise you may use my solution:
In /usr/share/X11/xorg.conf.d
directory I have 40-libinput.conf
with the following content:
# Match on all types of devices but joysticks
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
And 70-synaptics.conf
with:
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "PalmDetect" "1"
Option "PalmMinWidth" "8"
Option "PalmMinZ" "100"
Option "VertScrollDelta" "-125"
Option "HorizTwoFingerScroll" "on"
Option "HorizScrollDelta" "-125"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
If this file does not exist, you should create it. Notice that the number before synaptics must be greater than the number before libinput.
You should not delete 40-libinput.conf
because in this case touchpad won't work at all.
P.S. A good article in which you can find out how to configure Synaptics file - https://wiki.archlinux.org/index.php/Touchpad_Synaptics
Thanks for the answer, Let me try it. And i don't have the second file you mentioned.
â Comrade
May 27 at 9:49
@Comrade, just creating the file should be enough in most cases. However, if there are problems - check if thexserver-xorg-input-synaptics
package is installed (and install if it's not).
â Ducky
May 27 at 20:44
add a comment |Â
up vote
0
down vote
up vote
0
down vote
The same problem forced me to switch to Synaptics driver. It's deprecated but this fact has never affected my experience.
To make your touchpad stop shaking and become more precise you may use my solution:
In /usr/share/X11/xorg.conf.d
directory I have 40-libinput.conf
with the following content:
# Match on all types of devices but joysticks
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
And 70-synaptics.conf
with:
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "PalmDetect" "1"
Option "PalmMinWidth" "8"
Option "PalmMinZ" "100"
Option "VertScrollDelta" "-125"
Option "HorizTwoFingerScroll" "on"
Option "HorizScrollDelta" "-125"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
If this file does not exist, you should create it. Notice that the number before synaptics must be greater than the number before libinput.
You should not delete 40-libinput.conf
because in this case touchpad won't work at all.
P.S. A good article in which you can find out how to configure Synaptics file - https://wiki.archlinux.org/index.php/Touchpad_Synaptics
The same problem forced me to switch to Synaptics driver. It's deprecated but this fact has never affected my experience.
To make your touchpad stop shaking and become more precise you may use my solution:
In /usr/share/X11/xorg.conf.d
directory I have 40-libinput.conf
with the following content:
# Match on all types of devices but joysticks
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
And 70-synaptics.conf
with:
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "PalmDetect" "1"
Option "PalmMinWidth" "8"
Option "PalmMinZ" "100"
Option "VertScrollDelta" "-125"
Option "HorizTwoFingerScroll" "on"
Option "HorizScrollDelta" "-125"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
If this file does not exist, you should create it. Notice that the number before synaptics must be greater than the number before libinput.
You should not delete 40-libinput.conf
because in this case touchpad won't work at all.
P.S. A good article in which you can find out how to configure Synaptics file - https://wiki.archlinux.org/index.php/Touchpad_Synaptics
answered May 27 at 9:39
Ducky
563
563
Thanks for the answer, Let me try it. And i don't have the second file you mentioned.
â Comrade
May 27 at 9:49
@Comrade, just creating the file should be enough in most cases. However, if there are problems - check if thexserver-xorg-input-synaptics
package is installed (and install if it's not).
â Ducky
May 27 at 20:44
add a comment |Â
Thanks for the answer, Let me try it. And i don't have the second file you mentioned.
â Comrade
May 27 at 9:49
@Comrade, just creating the file should be enough in most cases. However, if there are problems - check if thexserver-xorg-input-synaptics
package is installed (and install if it's not).
â Ducky
May 27 at 20:44
Thanks for the answer, Let me try it. And i don't have the second file you mentioned.
â Comrade
May 27 at 9:49
Thanks for the answer, Let me try it. And i don't have the second file you mentioned.
â Comrade
May 27 at 9:49
@Comrade, just creating the file should be enough in most cases. However, if there are problems - check if the
xserver-xorg-input-synaptics
package is installed (and install if it's not).â Ducky
May 27 at 20:44
@Comrade, just creating the file should be enough in most cases. However, if there are problems - check if the
xserver-xorg-input-synaptics
package is installed (and install if it's not).â Ducky
May 27 at 20:44
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1038398%2flenovo-x1-carbon-3rd-generation-touchpad-issues%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
It's not normal. Probably a 'libinput' issue. Since this piece of software is relatively new, latest version brings big improvement. Try to update it!
â mattia.b89
May 22 at 20:43