summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2019-08-06 13:24:11 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2019-08-08 12:54:52 +1000
commitc5865f3ef0ec8c3e8f447af1d5d9fc18d8599294 (patch)
tree23ea52149408a2117fa71dc7f63eef5e1691b500
parent576bc2e5e6af1d580ba97327cb2023b1d1bd868e (diff)
downloadlibinput-c5865f3ef0ec8c3e8f447af1d5d9fc18d8599294.tar.gz
tablet: point the pressure offset log messages to the right URL
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--src/evdev-tablet.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/evdev-tablet.c b/src/evdev-tablet.c
index f717d30e..27f3f8eb 100644
--- a/src/evdev-tablet.c
+++ b/src/evdev-tablet.c
@@ -1292,19 +1292,19 @@ detect_pressure_offset(struct tablet_dispatch *tablet,
if (offset > axis_range_percentage(pressure, 20)) {
evdev_log_error(device,
"Ignoring pressure offset greater than 20%% detected on tool %s (serial %#x). "
- "See http://wayland.freedesktop.org/libinput/doc/%s/tablet-support.html\n",
+ "See %stablet-support.html\n",
tablet_tool_type_to_string(tool->type),
tool->serial,
- LIBINPUT_VERSION);
+ HTTP_DOC_LINK);
return;
}
evdev_log_info(device,
"Pressure offset detected on tool %s (serial %#x). "
- "See http://wayland.freedesktop.org/libinput/doc/%s/tablet-support.html\n",
+ "See %stablet-support.html\n",
tablet_tool_type_to_string(tool->type),
tool->serial,
- LIBINPUT_VERSION);
+ HTTP_DOC_LINK);
tool->pressure_offset = offset;
tool->has_pressure_offset = true;
tool->pressure_threshold.lower = pressure->minimum;