From e3062e21e24e4eb04e7599dd4a3e8195cde08851 Mon Sep 17 00:00:00 2001 From: Pandagrapher Date: Fri, 20 Oct 2023 13:02:43 +0200 Subject: [PATCH] Fixing CropDraw cursor offsets --- rtgui/cursormanager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/cursormanager.cc b/rtgui/cursormanager.cc index 4cecc6756..ae56b1361 100644 --- a/rtgui/cursormanager.cc +++ b/rtgui/cursormanager.cc @@ -57,7 +57,7 @@ void CursorManager::init (Glib::RefPtr mainWindow) cAdd = createCursor("crosshair-hicontrast", Gdk::PLUS); cAddPicker = createCursor("color-picker-add-hicontrast", Gdk::PLUS, -0.666, 0.75); - cCropDraw = createCursor("crop-point-hicontrast", Gdk::DIAMOND_CROSS); + cCropDraw = createCursor("crop-point-hicontrast", Gdk::DIAMOND_CROSS, -0.75, 0.75); cCrosshair = createCursor("crosshair-hicontrast", Gdk::CROSSHAIR); cEmpty = createCursor("empty", Gdk::BLANK_CURSOR); cHandClosed = createCursor("hand-closed-hicontrast", Gdk::HAND1);