mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 06:50:05 +01:00
Fix pre-commit errors
Some files had pre-commit style issues. Fix them. Signed-off-by: José Expósito <jose.exposito89@gmail.com> Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1036>
This commit is contained in:
parent
60e569941c
commit
7d849623d5
16 changed files with 5 additions and 17 deletions
|
|
@ -44,4 +44,3 @@ For reference, some example commits that add such a quirk are:
|
||||||
- `bf61ab9bb0694d0ac3d60a7f815779abfe4886e6 <https://gitlab.freedesktop.org/libinput/libinput/-/commit/bf61ab9bb0694d0ac3d60a7f815779abfe4886e6>`__
|
- `bf61ab9bb0694d0ac3d60a7f815779abfe4886e6 <https://gitlab.freedesktop.org/libinput/libinput/-/commit/bf61ab9bb0694d0ac3d60a7f815779abfe4886e6>`__
|
||||||
- `74fac6d040ac62048882dfb6f73da567ace6a6f5 <https://gitlab.freedesktop.org/libinput/libinput/-/commit/74fac6d040ac62048882dfb6f73da567ace6a6f5>`__
|
- `74fac6d040ac62048882dfb6f73da567ace6a6f5 <https://gitlab.freedesktop.org/libinput/libinput/-/commit/74fac6d040ac62048882dfb6f73da567ace6a6f5>`__
|
||||||
- `89cd0f990e3bee9906754d6ca8484ed5aa392249 <https://gitlab.freedesktop.org/libinput/libinput/-/commit/89cd0f990e3bee9906754d6ca8484ed5aa392249>`__
|
- `89cd0f990e3bee9906754d6ca8484ed5aa392249 <https://gitlab.freedesktop.org/libinput/libinput/-/commit/89cd0f990e3bee9906754d6ca8484ed5aa392249>`__
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -208,4 +208,3 @@
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
|
@ -223,4 +223,3 @@ the need for a restart.
|
||||||
|
|
||||||
Once the touch size ranges are deemed correct, :ref:`reporting_bugs` "report a
|
Once the touch size ranges are deemed correct, :ref:`reporting_bugs` "report a
|
||||||
bug" to get the thresholds into the repository.
|
bug" to get the thresholds into the repository.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -56,4 +56,3 @@ these axes are supposed to be mapped, few devices forward reliable
|
||||||
information. libinput uses these values together with a device-specific
|
information. libinput uses these values together with a device-specific
|
||||||
:ref:`device-quirks` entry. In other words, touch size detection does not work
|
:ref:`device-quirks` entry. In other words, touch size detection does not work
|
||||||
unless a device quirk is present for the device.
|
unless a device quirk is present for the device.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -152,4 +152,3 @@ has been removed. See :ref:`trackpoint_multiplier` for versions 1.12.x and later
|
||||||
|
|
||||||
If using libinput version 1.11.x or earlier, please see
|
If using libinput version 1.11.x or earlier, please see
|
||||||
`the 1.11.0 documentation <https://wayland.freedesktop.org/libinput/doc/1.11.0/trackpoints.html#trackpoint_range_measure>`_
|
`the 1.11.0 documentation <https://wayland.freedesktop.org/libinput/doc/1.11.0/trackpoints.html#trackpoint_range_measure>`_
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -65,4 +65,3 @@ sufficient pressure to even get close to the maximum ranges.
|
||||||
|
|
||||||
libinput provides a :ref:`Magic Trackpoint Multiplier
|
libinput provides a :ref:`Magic Trackpoint Multiplier
|
||||||
<trackpoint_multiplier>` to normalize the trackpoint input data.
|
<trackpoint_multiplier>` to normalize the trackpoint input data.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,3 @@ ModelBouncingKeys=1
|
||||||
[VMware VMware Virtual USB Mouse]
|
[VMware VMware Virtual USB Mouse]
|
||||||
MatchName=*VMware VMware Virtual USB Mouse*
|
MatchName=*VMware VMware Virtual USB Mouse*
|
||||||
ModelBouncingKeys=1
|
ModelBouncingKeys=1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,3 @@ MatchUdevType=touchpad
|
||||||
MatchName=*SynPS/2 Synaptics TouchPad
|
MatchName=*SynPS/2 Synaptics TouchPad
|
||||||
MatchDMIModalias=dmi:*svnSonyCorporation:pnVPCEG*
|
MatchDMIModalias=dmi:*svnSonyCorporation:pnVPCEG*
|
||||||
AttrPressureRange=45:40
|
AttrPressureRange=45:40
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -90,4 +90,3 @@
|
||||||
#define ck_assert_double_le(X, Y) _ck_assert_double_eq_op(X, <=, Y)
|
#define ck_assert_double_le(X, Y) _ck_assert_double_eq_op(X, <=, Y)
|
||||||
#define ck_assert_double_gt(X, Y) _ck_assert_double_ne_op(X, >, Y)
|
#define ck_assert_double_gt(X, Y) _ck_assert_double_ne_op(X, >, Y)
|
||||||
#define ck_assert_double_ge(X, Y) _ck_assert_double_eq_op(X, >=, Y)
|
#define ck_assert_double_ge(X, Y) _ck_assert_double_eq_op(X, >=, Y)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,4 +63,3 @@ TEST_DEVICE("tablet-mode-switch-unreliable",
|
||||||
{ NULL },
|
{ NULL },
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -83,5 +83,3 @@ currently down.
|
||||||
Part of the
|
Part of the
|
||||||
.B libinput(1)
|
.B libinput(1)
|
||||||
suite
|
suite
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue