From 5f6ca0afab6d3af93219dffea02f5ac3ae3d045d Mon Sep 17 00:00:00 2001 From: Morgan Hardwood Date: Tue, 29 Aug 2023 00:32:56 +0200 Subject: [PATCH] More visible curve crosshair cursor Fixes #6741 The mouse cursor when hovering over a curve was sometimes impossible to see on a high resolution screen due to the almost identical colors of the cursor relative to the curve background. --- rtgui/cursormanager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/cursormanager.cc b/rtgui/cursormanager.cc index e915150aa..bc0e38c49 100644 --- a/rtgui/cursormanager.cc +++ b/rtgui/cursormanager.cc @@ -35,7 +35,7 @@ void CursorManager::init (Glib::RefPtr mainWindow) #endif - Glib::RefPtr add = RTImage::createPixbufFromFile("crosshair-small.png"); + Glib::RefPtr add = RTImage::createPixbufFromFile("crosshair-hicontrast.png"); Glib::RefPtr colPick = RTImage::createPixbufFromFile("color-picker-hicontrast.png"); Glib::RefPtr colPickAdd = RTImage::createPixbufFromFile("color-picker-add-hicontrast.png"); Glib::RefPtr cropDraw = RTImage::createPixbufFromFile("crop-point-hicontrast.png");