== interface ==

Two new mouse cursors (paintbrush and text I-bar) made by basse (he even made the patch!), inspired by Bart's page.

I also changed screenmain() ever so slightly, so that the standard cursor is always used when the mouse is over a window header.
This commit is contained in:
2006-01-29 22:25:53 +00:00
parent 24446906bc
commit aa3aaaa9b6
4 changed files with 80 additions and 2 deletions

View File

@@ -414,8 +414,11 @@ void window_set_cursor(Window *win, int curs) {
/* detect if we use system cursor or Blender cursor */
switch(curs) {
case CURSOR_TEXTEDIT:
SetBlenderCursor(BC_TEXTEDITCURSOR);
break;
case CURSOR_VPAINT:
SetBlenderCursor(BC_KNIFECURSOR);
SetBlenderCursor(BC_PAINTBRUSHCURSOR);
break;
default:
GHOST_SetCursorShape(win->ghostwin, convert_cursor(curs));