Re: Areal View Problem

by sjb007 » Thu Dec 04, 2025 2:48 pm

A few random thoughts:
  1. Are you using a fancy mouse with custom settings i.e. I have an MX Master 2S, and it has a whole special app (Solaar) for controlling advanced features. Check if any settings are the same/different between the two systems.
  2. Did you try a completely different model of mouse? Preferably a really basic one with no "smarts".
  3. Maybe the laptop touchpad and the mouse are conflicting with each other. Does the problem occur with no mouse, just using the touchpad? Have you tried disabling the touchpad? This will be system/desktop dependent, so you would have to figure this out yourself. Possibilities are a) an app to disable it for typing, b) disable it in X - see below, c) blacklist the driver, d) a bios option.
    [/list=1]

    For X you could try something like

    Code: Select all

    xinput list
    to get something like

    Code: Select all

    ⎡ Virtual core pointer                    	id=2	[master pointer  (3)]
    ⎜   ↳ Virtual core XTEST pointer              	id=4	[slave  pointer  (2)]
    ⎜   ↳ Logitech MX Master 2S                   	id=14	[slave  pointer  (2)]
    ⎜   ↳ Logitech MX Master 2S                   	id=15	[slave  pointer  (2)]
    ⎜   ↳ DLL07BE:01 06CB:7A13 Touchpad           	id=18	[slave  pointer  (2)]
    ⎜   ↳ ELAN Touchscreen                        	id=16	[slave  pointer  (2)]
    ⎜   ↳ DLL07BE:01 06CB:7A13 Mouse              	id=17	[slave  pointer  (2)]
    ⎜   ↳ Logitech MX Master 2S                   	id=20	[slave  pointer  (2)]
    
    and I would use

    Code: Select all

    xinput disable 18
    to disable my touchpad. Maybe I would also have to disable 17. Not sure why there are two, but 18 disables control of the cursor for me.

    I don't use Wayland, so you would have to figure that out yourself.