From b98726e431d4d3ed58bd58bee1047cdb81cec69f Mon Sep 17 00:00:00 2001 From: Pascal Lasnier <43880390+pylasnier@users.noreply.github.com> Date: Sat, 28 Sep 2024 14:13:23 +0000 Subject: [PATCH] docs: Correction in hotspot coordinates documentation (#63) --- docs/MAKING_THEMES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/MAKING_THEMES.md b/docs/MAKING_THEMES.md index 283bca7..dd6a1ae 100644 --- a/docs/MAKING_THEMES.md +++ b/docs/MAKING_THEMES.md @@ -49,7 +49,7 @@ Each cursor image is a separate directory. In it, multiple size variations can b resize_algorithm = bilinear # "hotspot" is where in your cursor the actual "click point" should be. -# this is in absolute coordinates. x+ is east, y+ is north. +# this is in absolute coordinates. x+ is east, y+ is south. # the pixel coordinates of the hotspot at size are rounded to the nearest: # (round(size * hotspot_x), round(size * hotspot_y)) hotspot_x = 0.0 # this goes 0 - 1 @@ -102,4 +102,4 @@ define_override = 'shape1;shape2;shape3' define_size = '24,image1.png,200;24,image2.png,200;32,image3.png,200' ``` -You can put spaces around the semicolons if you prefer to. \ No newline at end of file +You can put spaces around the semicolons if you prefer to.