Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Aug 2014 15:14:54 +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: r270278 - head/sys/dev/vt
Message-ID:  <201408211514.s7LFEs0t022538@svn.freebsd.org>

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

Log:
  vt(4): Mark cursor position as dirty when we enable/disable it
  
  MFC after:	1 week

Modified:
  head/sys/dev/vt/vt_core.c

Modified: head/sys/dev/vt/vt_core.c
==============================================================================
--- head/sys/dev/vt/vt_core.c	Thu Aug 21 15:10:10 2014	(r270277)
+++ head/sys/dev/vt/vt_core.c	Thu Aug 21 15:14:54 2014	(r270278)
@@ -1559,6 +1559,15 @@ vt_mouse_state(int show)
 		vw->vw_flags &= ~VWF_MOUSE_HIDE;
 		break;
 	}
+
+	/*
+	 * Mark mouse position as dirty.
+	 *
+	 * FIXME: See comments in vt_flush().
+	 */
+	vtbuf_mouse_cursor_position(&vw->vw_buf,
+	    vd->vd_mx / vw->vw_font->vf_width,
+	    vd->vd_my / vw->vw_font->vf_height);
 }
 #endif
 



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