mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-24 04:11:28 +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:
|
||||
hCursor = LoadCursor(NULL, IDC_SIZENS);
|
||||
break;
|
||||
case GSResizeNWSECursor:
|
||||
hCursor = LoadCursor(NULL, IDC_SIZENWSE);
|
||||
break;
|
||||
case GSResizeNESWCursor:
|
||||
hCursor = LoadCursor(NULL, IDC_SIZENESW);
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue