]> Pileus Git - ~andy/gtk/commitdiff
Connect gtk_drag_hightlight_expose _after_, so it works with widgets that
authorOwen Taylor <otaylor@redhat.com>
Wed, 26 Dec 2001 17:31:40 +0000 (17:31 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Wed, 26 Dec 2001 17:31:40 +0000 (17:31 +0000)
Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>

        * gtk/gtkdnd.c (gtk_drag_highlight): Connect
        gtk_drag_hightlight_expose _after_, so it works with
        widgets that paint there entire background. (#66735)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkdnd.c

index b879b99bed41db3dc9e32cc3ecf20741568580ba..53e1fdcd7bfd9b531d4b29c02a4b7d689fdbebdf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkdnd.c (gtk_drag_highlight): Connect 
+       gtk_drag_hightlight_expose _after_, so it works with
+       widgets that paint there entire background. (#66735)
+
 Wed Dec 26 12:17:06 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkplug.c (gtk_plug_size_allocate): Assign the
index b879b99bed41db3dc9e32cc3ecf20741568580ba..53e1fdcd7bfd9b531d4b29c02a4b7d689fdbebdf 100644 (file)
@@ -1,3 +1,9 @@
+Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkdnd.c (gtk_drag_highlight): Connect 
+       gtk_drag_hightlight_expose _after_, so it works with
+       widgets that paint there entire background. (#66735)
+
 Wed Dec 26 12:17:06 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkplug.c (gtk_plug_size_allocate): Assign the
index b879b99bed41db3dc9e32cc3ecf20741568580ba..53e1fdcd7bfd9b531d4b29c02a4b7d689fdbebdf 100644 (file)
@@ -1,3 +1,9 @@
+Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkdnd.c (gtk_drag_highlight): Connect 
+       gtk_drag_hightlight_expose _after_, so it works with
+       widgets that paint there entire background. (#66735)
+
 Wed Dec 26 12:17:06 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkplug.c (gtk_plug_size_allocate): Assign the
index b879b99bed41db3dc9e32cc3ecf20741568580ba..53e1fdcd7bfd9b531d4b29c02a4b7d689fdbebdf 100644 (file)
@@ -1,3 +1,9 @@
+Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkdnd.c (gtk_drag_highlight): Connect 
+       gtk_drag_hightlight_expose _after_, so it works with
+       widgets that paint there entire background. (#66735)
+
 Wed Dec 26 12:17:06 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkplug.c (gtk_plug_size_allocate): Assign the
index b879b99bed41db3dc9e32cc3ecf20741568580ba..53e1fdcd7bfd9b531d4b29c02a4b7d689fdbebdf 100644 (file)
@@ -1,3 +1,9 @@
+Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkdnd.c (gtk_drag_highlight): Connect 
+       gtk_drag_hightlight_expose _after_, so it works with
+       widgets that paint there entire background. (#66735)
+
 Wed Dec 26 12:17:06 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkplug.c (gtk_plug_size_allocate): Assign the
index b879b99bed41db3dc9e32cc3ecf20741568580ba..53e1fdcd7bfd9b531d4b29c02a4b7d689fdbebdf 100644 (file)
@@ -1,3 +1,9 @@
+Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkdnd.c (gtk_drag_highlight): Connect 
+       gtk_drag_hightlight_expose _after_, so it works with
+       widgets that paint there entire background. (#66735)
+
 Wed Dec 26 12:17:06 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkplug.c (gtk_plug_size_allocate): Assign the
index b879b99bed41db3dc9e32cc3ecf20741568580ba..53e1fdcd7bfd9b531d4b29c02a4b7d689fdbebdf 100644 (file)
@@ -1,3 +1,9 @@
+Wed Dec 26 12:28:24 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkdnd.c (gtk_drag_highlight): Connect 
+       gtk_drag_hightlight_expose _after_, so it works with
+       widgets that paint there entire background. (#66735)
+
 Wed Dec 26 12:17:06 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkplug.c (gtk_plug_size_allocate): Assign the
index b1122cae7c5f3b5a9585e27f181ad51b27c819ee..6af2c50d9d7fd52c7ef017de8f86b16a4213579f 100644 (file)
@@ -760,9 +760,9 @@ gtk_drag_highlight_expose (GtkWidget      *widget,
 void 
 gtk_drag_highlight (GtkWidget  *widget)
 {
-  gtk_signal_connect (GTK_OBJECT (widget), "expose_event",
-                     GTK_SIGNAL_FUNC (gtk_drag_highlight_expose),
-                     NULL);
+  gtk_signal_connect_after (GTK_OBJECT (widget), "expose_event",
+                           GTK_SIGNAL_FUNC (gtk_drag_highlight_expose),
+                           NULL);
 
   gtk_widget_queue_draw (widget);
 }