svn commit: r379716 - in head/x11/tilda: . files

Rodrigo Osorio rodrigo at FreeBSD.org
Mon Feb 23 23:20:57 UTC 2015


Author: rodrigo
Date: Mon Feb 23 23:20:56 2015
New Revision: 379716
URL: https://svnweb.freebsd.org/changeset/ports/379716
QAT: https://qat.redports.org/buildarchive/r379716/

Log:
  Fix segfault with tilda
  Bump port revision
  
  PR:		197819
  Submitted by:	<mzs_47 at yahoo.co.in>
  Obtained from:	mandriva

Added:
  head/x11/tilda/files/
  head/x11/tilda/files/patch-key_grabber.c   (contents, props changed)
Modified:
  head/x11/tilda/Makefile

Modified: head/x11/tilda/Makefile
==============================================================================
--- head/x11/tilda/Makefile	Mon Feb 23 23:20:02 2015	(r379715)
+++ head/x11/tilda/Makefile	Mon Feb 23 23:20:56 2015	(r379716)
@@ -2,7 +2,7 @@
 
 PORTNAME=	tilda
 PORTVERSION=	0.9.6
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	x11
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 

Added: head/x11/tilda/files/patch-key_grabber.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/tilda/files/patch-key_grabber.c	Mon Feb 23 23:20:56 2015	(r379716)
@@ -0,0 +1,15 @@
+diff --git a/src/key_grabber.c b/src/key_grabber.c
+index 8c9e67c..b4ca786 100644
+--- src/key_grabber.c
++++ src/key_grabber.c
+@@ -190,8 +190,8 @@ void pull (struct tilda_window_ *tw, enum pull_state state)
+          * Overriding the user time here seems to work a lot better than calling
+          * gtk_window_present_with_time() here, or at the end of the function. I have
+          * no idea why, they should do the same thing. */
+-        gdk_x11_window_set_user_time (GTK_WIDGET(tw->window)->window,
+-                                      tomboy_keybinder_get_current_event_time());
++        /*gdk_x11_window_set_user_time (GTK_WIDGET(tw->window)->window,
++                                      tomboy_keybinder_get_current_event_time());*/
+         gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos"));
+         gtk_widget_show (GTK_WIDGET(tw->window));
+ 


More information about the svn-ports-all mailing list