1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Fix segfault with tilda

Bump port revision

PR:		197819
Submitted by:	<mzs_47@yahoo.co.in>
Obtained from:	mandriva
This commit is contained in:
Rodrigo Osorio 2015-02-23 23:20:56 +00:00
parent 75057c7660
commit 3a9189625f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=379716
2 changed files with 16 additions and 1 deletions

View File

@ -2,7 +2,7 @@
PORTNAME= tilda
PORTVERSION= 0.9.6
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= x11
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

View File

@ -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));