Issue 2855: Changed straighten and crop tool mouse cursor icons from GDK::CROSSHAIR to cHand so that they will be visible when used over both light and dark images.

This commit is contained in:
DrSlony 2015-07-29 18:15:18 +02:00
parent fca16a697a
commit 46c530b5d9

View File

@ -98,13 +98,13 @@ void CursorManager::setCursor (Glib::RefPtr<Gdk::Window> window, CursorShape sha
else if (shape==CSSpotWB)
window->set_cursor (*cWB);
else if (shape==CSCropSelect)
window->set_cursor (*cCropSelection);
window->set_cursor (*cHand);
else if (shape==CSMoveLeft)
window->set_cursor (*cLeftTanMove);
else if (shape==CSMoveRight)
window->set_cursor (*cRightTanMove);
else if (shape==CSStraighten)
window->set_cursor (*cCropSelection);
window->set_cursor (*cHand);
else if (shape==CSWait)
window->set_cursor (*cWait);
else if (shape==CSPlus)