마법 같은 트랙패드의 자연스러운 스크롤 중단

마법 같은 트랙패드의 자연스러운 스크롤 중단

Ubuntu 12.04 배포판에 Apple Magic Trackpad가 연결되어 있으며 다음 위치에 있는 사용자 정의 xorg 구성 파일과 잘 작동합니다 /etc/X11/xorg.conf.d/60-apple-wireless-trackpad.conf.

# Configuration for fine-tuning only the Apple Magic Trackpad.
Section "InputClass"
    Identifier "Apple Magic Trackpad"
    Driver "synaptics"

    # Match only the Apple Magic Trackpad
    MatchUSBID "05ac:030e"
    MatchIsTouchpad "on"

    # Set resolution tweaks for better response
    Option "VertResolution" "75"
    Option "HorizResolution" "75"

    # Set a timeout for multi finger click so accidental double-clicks don't
    # happen when right clicking and other gestures
    Option "EmulateMidButtonTime" "100"

    # Increase sensitivity
    Option "MinSpeed" "1.75"
    Option "MaxSpeed" "1.85"
    Option "AccelFactor" "0.05"

    # Scrolling   
    Option "VertScrollDelta" "-100"
    Option "HorizScrollDelta" "-100"
EndSection

음수 스크롤 증가는 "자연스러운 스크롤", 즉 역방향 스크롤을 제공합니다. 내가 겪고 있는 문제는 스크롤할 때 종종 "점프"된다는 것입니다.

무슨 일이 일어나는가?

  1. 두 손가락을 사용하여 아래 또는 위로 드래그하여 특정 지점으로 스크롤합니다.
  2. 그런 다음 빠르게 동일한 작업을 다시 수행하여 계속 스크롤합니다.
  3. 콘텐츠가 스크롤 방향의 반대 방향으로 이동합니다.

내가 그랬어스크린샷여기. 전체 화면을 시청하고 왼쪽의 스크롤 막대를 확인하세요.

답변1

귀하의 "빠른" 스크롤이 스크롤 증가분을 초과하는 것 같습니다.

어쨌든 Ubuntu 12에도 Magic Trackpad가 있습니다. 자연스러운 스크롤을 얻기 위해 ZAxisMapping 버튼을 교체했습니다.

상세 설명우분투 위키에서.

간단히 말해서:

xev트랙패드의 위로 스와이프 및 아래로 스와이프 버튼을 찾습니다 . 역순으로 놓으십시오 xorg.conf.

관련 정보