Enlightenment CVS committal Author : sebastid Project : e17 Module : apps/e
Dir : e17/apps/e/src/bin Modified Files: e_pointer.c Log Message: x cursor uses size, not pixels. Scaling by 3/4 seems ok :) =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_pointer.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -3 -r1.18 -r1.19 --- e_pointer.c 10 Oct 2005 07:58:24 -0000 1.18 +++ e_pointer.c 10 Oct 2005 08:18:35 -0000 1.19 @@ -127,7 +127,7 @@ p->e_cursor = 0; p->win = win; - ecore_x_cursor_size_set(e_config->cursor_size); + ecore_x_cursor_size_set(e_config->cursor_size * 3 / 4); e_pointer_type_push(p, p, "default"); _e_pointers = evas_list_append(_e_pointers, p); @@ -169,7 +169,7 @@ { char *type; - ecore_x_cursor_size_set(e_config->cursor_size); + ecore_x_cursor_size_set(e_config->cursor_size * 3 / 4); type = p->type; p->type = NULL; _e_pointer_type_set(p, type); ------------------------------------------------------- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs