From 2804480585a371b21dd29de5455fea0cf217a852 Mon Sep 17 00:00:00 2001 From: Lawrence Lee Date: Mon, 20 Jul 2020 16:55:14 -0700 Subject: [PATCH] Change cursors used in control line edit mode Panning cursor is the open hand icon and draw cursor is the crosshair icon. --- rtgui/controllines.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rtgui/controllines.cc b/rtgui/controllines.cc index 2fd446c56..573b3263f 100644 --- a/rtgui/controllines.cc +++ b/rtgui/controllines.cc @@ -32,7 +32,7 @@ using namespace rtengine; ControlLineManager::ControlLineManager(): EditSubscriber(ET_OBJECTS), canvas_area(new Rectangle()), - cursor(CSCrosshair), + cursor(CSHandOpen), draw_mode(false), drawing_line(false), edited(false), @@ -285,9 +285,9 @@ bool ControlLineManager::mouseOver(int modifierKey) if (cur_obj == 0) { // Canvas if (draw_mode && modifierKey & GDK_CONTROL_MASK) { - cursor = CSPlus; - } else { cursor = CSCrosshair; + } else { + cursor = CSHandOpen; } } else if (cur_obj < 0) { // Nothing cursor = CSArrow;