diff options
author | Yong Bakos <ybakos@humanoriented.com> | 2016-04-28 12:00:46 -0500 |
---|---|---|
committer | Bryce Harrington <bryce@bryceharrington.org> | 2016-04-29 16:35:24 -0700 |
commit | aaafffe03949a673fd2f2d957900e0569ece440c (patch) | |
tree | 4c0ff8d69d2199dc3956ff687193c04155be8f00 /unstable/tablet | |
parent | 44d5da751f413ebfe8b92d6f6543a91a24008a43 (diff) |
tablet: Hyphenate compound adjective surface-local
In addition, simplify relevant x/y coordinate parameter summaries.
See https://lists.freedesktop.org/archives/wayland-devel/2016-April/028249.html.
Signed-off-by: Yong Bakos <ybakos@humanoriented.com>
Diffstat (limited to 'unstable/tablet')
-rw-r--r-- | unstable/tablet/tablet-unstable-v1.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unstable/tablet/tablet-unstable-v1.xml b/unstable/tablet/tablet-unstable-v1.xml index 907126c..c5f58e9 100644 --- a/unstable/tablet/tablet-unstable-v1.xml +++ b/unstable/tablet/tablet-unstable-v1.xml @@ -210,7 +210,7 @@ The parameters hotspot_x and hotspot_y define the position of the pointer surface relative to the pointer location. Its top-left corner is always at (x, y) - (hotspot_x, hotspot_y), where (x, y) are the - coordinates of the pointer location, in surface local coordinates. + coordinates of the pointer location, in surface-local coordinates. On surface.attach requests to the pointer surface, hotspot_x and hotspot_y are decremented by the x and y parameters passed to the @@ -235,8 +235,8 @@ </description> <arg name="serial" type="uint" summary="serial of the enter event"/> <arg name="surface" type="object" interface="wl_surface" allow-null="true"/> - <arg name="hotspot_x" type="int" summary="x coordinate in surface local coordinates"/> - <arg name="hotspot_y" type="int" summary="y coordinate in surface local coordinates"/> + <arg name="hotspot_x" type="int" summary="surface-local x coordinate"/> + <arg name="hotspot_y" type="int" summary="surface-local y coordinate"/> </request> <request name="destroy" type="destructor"> @@ -449,8 +449,8 @@ <description summary="motion event"> Sent whenever a tablet tool moves. </description> - <arg name="x" type="fixed" summary="x coordinate in surface local coordinates"/> - <arg name="y" type="fixed" summary="y coordinate in surface local coordinates"/> + <arg name="x" type="fixed" summary="surface-local x coordinate"/> + <arg name="y" type="fixed" summary="surface-local y coordinate"/> </event> <event name="pressure"> |