]> git.eshelyaron.com Git - emacs.git/commitdiff
* gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
authorJan D <jan.h.d@swipnet.se>
Tue, 26 Oct 2010 06:09:54 +0000 (08:09 +0200)
committerJan D <jan.h.d@swipnet.se>
Tue, 26 Oct 2010 06:09:54 +0000 (08:09 +0200)
src/ChangeLog
src/gtkutil.c

index 529677cb5f475571e8e182a0292a5d5470e4f327..11cfd232e45eac8d08fb8d929e27fef2f2fa1b53 100644 (file)
@@ -1,3 +1,7 @@
+2010-10-26  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
+
 2010-10-25  Glenn Morris  <rgm@gnu.org>
 
        * Makefile.in (SOME_MACHINE_LISP): Remove easymenu.elc.
index 3b7e6888753598a8f62b72c8827a52fa7963be2a..7103d2b19913386296d7203d164c63d7af330f01 100644 (file)
@@ -589,6 +589,8 @@ qttip_cb (GtkWidget  *widget,
       g_object_ref (G_OBJECT (x->ttip_lbl));
       gtk_tooltip_set_custom (tooltip, x->ttip_lbl);
       x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl));
+      /* ATK needs an empty title for some reason.  */
+      gtk_window_set_title (x->ttip_window, "");
       /* Realize so we can safely get screen later on.  */
       gtk_widget_realize (GTK_WIDGET (x->ttip_window));
       gtk_widget_realize (x->ttip_lbl);