mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-25 08:51:03 +00:00
Added bi-directional diagonal mouse cursors to standard cursors
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@37011 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9308410d88
commit
b64f7fbd78
1 changed files with 6 additions and 0 deletions
|
@ -2697,6 +2697,12 @@ LRESULT CALLBACK windowEnumCallback(HWND hwnd, LPARAM lParam)
|
||||||
case GSResizeUpDownCursor:
|
case GSResizeUpDownCursor:
|
||||||
hCursor = LoadCursor(NULL, IDC_SIZENS);
|
hCursor = LoadCursor(NULL, IDC_SIZENS);
|
||||||
break;
|
break;
|
||||||
|
case GSResizeNWSECursor:
|
||||||
|
hCursor = LoadCursor(NULL, IDC_SIZENWSE);
|
||||||
|
break;
|
||||||
|
case GSResizeNESWCursor:
|
||||||
|
hCursor = LoadCursor(NULL, IDC_SIZENESW);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue