Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Aug 2014 10:54:39 +0000 (UTC)
From:      Jean-Sebastien Pedron <dumbbell@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r270265 - head/sys/dev/vt/font
Message-ID:  <201408211054.s7LAsdGa000669@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dumbbell
Date: Thu Aug 21 10:54:39 2014
New Revision: 270265
URL: http://svnweb.freebsd.org/changeset/base/270265

Log:
  vt(4): Fix an inconsistency between the mouse cursor bitmap and its mask
  
  MFC after:	1 week

Modified:
  head/sys/dev/vt/font/vt_mouse_cursor.c

Modified: head/sys/dev/vt/font/vt_mouse_cursor.c
==============================================================================
--- head/sys/dev/vt/font/vt_mouse_cursor.c	Thu Aug 21 10:46:19 2014	(r270264)
+++ head/sys/dev/vt/font/vt_mouse_cursor.c	Thu Aug 21 10:54:39 2014	(r270265)
@@ -43,7 +43,7 @@ struct mouse_cursor vt_default_mouse_poi
 		0x7c, /* "_*****_ " */
 		0x7e, /* "_******_" */
 		0x68, /* "_**_****" */
-		0x4c, /* "_*__**__" */
+		0x4c, /* "_*__**_ " */
 		0x0c, /* " _ _**_ " */
 		0x06, /* "    _**_" */
 		0x06, /* "    _**_" */
@@ -58,8 +58,8 @@ struct mouse_cursor vt_default_mouse_poi
 		0xfe, /* "_______ " */
 		0xff, /* "________" */
 		0xff, /* "________" */
-		0xff, /* "________" */
-		0x1e, /* "   ____ " */
+		0xfe, /* "_______ " */
+		0x5e, /* " _ ____ " */
 		0x0f, /* "    ____" */
 		0x0f, /* "    ____" */
 		0x0f, /* "    ____" */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408211054.s7LAsdGa000669>