* debian/patches/091_size_allocate_crash.patch:

+ Patch from upstream GIT to fix a crash on size allocations.
    Thanks to Sebastien Bacher.
This commit is contained in:
Sebastian Dröge
2010-01-06 10:42:57 +00:00
parent 9ff6dc1df3
commit 915e120efb
3 changed files with 34 additions and 0 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
gtk+2.0 (2.19.2-2) experimental; urgency=low
* debian/patches/091_size_allocate_crash.patch:
+ Patch from upstream GIT to fix a crash on size allocations.
Thanks to Sebastien Bacher.
-- Sebastian Dröge <slomo@debian.org> Wed, 06 Jan 2010 11:42:07 +0100
gtk+2.0 (2.19.2-1) experimental; urgency=low
[ Emilio Pozuelo Monfort ]

View File

@ -0,0 +1,25 @@
From acb6f4ff33bb9eebd8c2b8ba4404d282426e1eeb Mon Sep 17 00:00:00 2001
From: Kristian Rietveld <kris@gtk.org>
Date: Wed, 23 Dec 2009 07:31:21 +0000
Subject: Fix call to update_prelight()
Seems like some minus signs sneaked in while diffing and reapplying...
Fixes regression noted in 480065.
---
diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c
index 1a60677..949250f 100644
--- a/gtk/gtktreeview.c
+++ b/gtk/gtktreeview.c
@@ -2475,8 +2475,8 @@ gtk_tree_view_size_allocate (GtkWidget *widget,
if (tree_view->priv->prev_width_before_expander
!= width_before_expander)
update_prelight (tree_view,
- -tree_view->priv->event_last_x,
- -tree_view->priv->event_last_y);
+ tree_view->priv->event_last_x,
+ tree_view->priv->event_last_y);
tree_view->priv->prev_width_before_expander = width_before_expander;
}
--
cgit v0.8.3.1

View File

@ -15,3 +15,4 @@
061_use_pdf_as_default_printing_standard.patch
070_mandatory-relibtoolize.patch
090_directfb-map-virtual-modifiers.patch
091_size_allocate_crash.patch