svn commit: r305566 - in head/net/rdesktop: . files

David E. O'Brien obrien at FreeBSD.org
Tue Oct 9 06:28:44 UTC 2012


Author: obrien
Date: Tue Oct  9 02:11:46 2012
New Revision: 305566
URL: http://svn.freebsd.org/changeset/ports/305566

Log:
  During normal operation, rdesktop keeps a clipping rectangle set to the
  size of the desktop.  However, the clipping rectangle is not reset when
  the size of the desktop changes.  This means that when the size of the
  desktop increases, the area outside the original size will not be drawn.
  
  Submitted by:	des

Added:
  head/net/rdesktop/files/patch-xwin.c   (contents, props changed)
Modified:
  head/net/rdesktop/Makefile

Modified: head/net/rdesktop/Makefile
==============================================================================
--- head/net/rdesktop/Makefile	Tue Oct  9 01:43:37 2012	(r305565)
+++ head/net/rdesktop/Makefile	Tue Oct  9 02:11:46 2012	(r305566)
@@ -7,7 +7,7 @@
 
 PORTNAME=	rdesktop
 PORTVERSION=	1.7.1
-PORTREVISION?=	0
+PORTREVISION?=	1
 CATEGORIES=	net comms ipv6
 MASTER_SITES=	SF
 

Added: head/net/rdesktop/files/patch-xwin.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rdesktop/files/patch-xwin.c	Tue Oct  9 02:11:46 2012	(r305566)
@@ -0,0 +1,11 @@
+$FreeBSD$
+
+--- xwin.c.orig	2011-04-13 04:13:04.000000000 -0700
++++ xwin.c	2012-10-08 19:06:06.000000000 -0700
+@@ -2150,4 +2150,6 @@ ui_resize_window()
+ 		g_backstore = bs;
+ 	}
++
++	ui_reset_clip();
+ }
+ 



More information about the svn-ports-all mailing list