settings: remove _feature_hires_smooth_resolution as recent Linux input drivers depend on it not changing

This commit is contained in:
Peter F. Patel-Schneider 2021-04-04 09:57:09 -04:00
parent 9842972d8b
commit 7e360e4416
2 changed files with 5 additions and 5 deletions

View File

@ -458,7 +458,7 @@ _D(
wpid='406D', wpid='406D',
settings=[ settings=[
_FS.hires_smooth_invert(), _FS.hires_smooth_invert(),
_FS.hires_smooth_resolution(), # _FS.hires_smooth_resolution(),
_FS.pointer_speed(), _FS.pointer_speed(),
] ]
) )
@ -483,7 +483,7 @@ _D(
wpid='404A', wpid='404A',
settings=[ settings=[
_FS.hires_smooth_invert(), _FS.hires_smooth_invert(),
_FS.hires_smooth_resolution(), # _FS.hires_smooth_resolution(),
], ],
) )
_D( _D(
@ -510,7 +510,7 @@ _D(
btid=0xb012, btid=0xb012,
settings=[ settings=[
_FS.hires_smooth_invert(), _FS.hires_smooth_invert(),
_FS.hires_smooth_resolution(), # _FS.hires_smooth_resolution(),
], ],
) )
@ -522,7 +522,7 @@ _D(
btid=0xb019, btid=0xb019,
settings=[ settings=[
_FS.hires_smooth_invert(), _FS.hires_smooth_invert(),
_FS.hires_smooth_resolution(), # _FS.hires_smooth_resolution(),
_FS.gesture2_gestures(), _FS.gesture2_gestures(),
], ],
) )

View File

@ -772,7 +772,7 @@ _SETTINGS_TABLE = [
_S(_HI_RES_SCROLL, _F.HI_RES_SCROLLING, _feature_hi_res_scroll), _S(_HI_RES_SCROLL, _F.HI_RES_SCROLLING, _feature_hi_res_scroll),
_S(_LOW_RES_SCROLL, _F.LOWRES_WHEEL, _feature_lowres_smooth_scroll), _S(_LOW_RES_SCROLL, _F.LOWRES_WHEEL, _feature_lowres_smooth_scroll),
_S(_HIRES_INV, _F.HIRES_WHEEL, _feature_hires_smooth_invert), _S(_HIRES_INV, _F.HIRES_WHEEL, _feature_hires_smooth_invert),
_S(_HIRES_RES, _F.HIRES_WHEEL, _feature_hires_smooth_resolution), # _S(_HIRES_RES, _F.HIRES_WHEEL, _feature_hires_smooth_resolution), # Recent Linux drivers depend on this not changing
_S(_SMART_SHIFT, _F.SMART_SHIFT, _feature_smart_shift), _S(_SMART_SHIFT, _F.SMART_SHIFT, _feature_smart_shift),
_S(_SMART_SHIFT, _F.SMART_SHIFT_ENHANCED, _feature_smart_shift_enhanced, identifier='smart_shift_enhanced'), _S(_SMART_SHIFT, _F.SMART_SHIFT_ENHANCED, _feature_smart_shift_enhanced, identifier='smart_shift_enhanced'),
_S(_THUMB_SCROLL_MODE, _F.THUMB_WHEEL, _feature_thumb_mode), _S(_THUMB_SCROLL_MODE, _F.THUMB_WHEEL, _feature_thumb_mode),