Navigator should use a different icon while panning
The Navigator uses the same hand icon regardless whether panning the red square or not, this branch tries to fix that, #4738 Includes a cleanup of icon names, i.e. the crosshair should not be called the hand.
This commit is contained in:
@@ -1251,7 +1251,7 @@ void CropWindow::updateCursor (int x, int y)
|
||||
if (onArea (CropObserved, x, y)) {
|
||||
newType = CSMove;
|
||||
} else {
|
||||
newType = CSOpenHand;
|
||||
newType = CSHandOpen;
|
||||
}
|
||||
} else if (tm == TMSpotWB) {
|
||||
newType = CSSpotWB;
|
||||
@@ -1284,7 +1284,7 @@ void CropWindow::updateCursor (int x, int y)
|
||||
} else if (state == SCropMove || state == SCropWinMove || state == SObservedMove) {
|
||||
newType = CSMove;
|
||||
} else if (state == SHandMove || state == SCropImgMove) {
|
||||
newType = CSClosedHand;
|
||||
newType = CSHandClosed;
|
||||
} else if (state == SResizeW1 || state == SResizeW2) {
|
||||
newType = CSResizeWidth;
|
||||
} else if (state == SResizeH1 || state == SResizeH2) {
|
||||
|
Reference in New Issue
Block a user