]> code.delx.au - gnu-emacs/commitdiff
Don't let Gtk+ linewrap tooltips.
authorJan Djärv <jan.h.d@swipnet.se>
Fri, 8 Jul 2011 17:25:17 +0000 (19:25 +0200)
committerJan Djärv <jan.h.d@swipnet.se>
Fri, 8 Jul 2011 17:25:17 +0000 (19:25 +0200)
* gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
Put text in x->ttip_lbl instead of gtk_tooltip_set_text.
(xg_hide_tooltip): Fix comment.

Fixes: debbugs:8591
src/ChangeLog
src/gtkutil.c

index ff7382a87e4c8a937226f527ada908ed30da17f2..741055030402332e207bbd40fa4793439369b28a 100644 (file)
@@ -1,5 +1,9 @@
 2011-07-08  Jan Djärv  <jan.h.d@swipnet.se>
 
+       * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
+       Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
+       (xg_hide_tooltip): Fix comment.
+
        * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
        in registerServicesMenuSendTypes.
        (validRequestorForSendType): Don't check ns_return_types.
index 343fcfa083a9ee55dd14ae1bbff88ed965543bf3..b11500bf8601084870467418ce5c552c2612822a 100644 (file)
@@ -659,8 +659,8 @@ qttip_cb (GtkWidget  *widget,
 
 int
 xg_prepare_tooltip (FRAME_PTR f,
-                      Lisp_Object string,
-                      int *width,
+                    Lisp_Object string,
+                    int *width,
                     int *height)
 {
 #ifndef USE_GTK_TOOLTIP
@@ -697,11 +697,12 @@ xg_prepare_tooltip (FRAME_PTR f,
                      (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))),
                      "gdk-display-current-tooltip", NULL);
 
-  /* Put out dummy widget in so we can get callbacks for unrealize and
+  /* Put our dummy widget in so we can get callbacks for unrealize and
      hierarchy-changed.  */
   gtk_tooltip_set_custom (x->ttip_widget, widget);
 
-  gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string));
+  gtk_tooltip_set_text (x->ttip_widget, "");
+  gtk_label_set_text (GTK_LABEL (x->ttip_lbl), SSDATA (encoded_string));
   gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req);
   if (width) *width = req.width;
   if (height) *height = req.height;
@@ -731,7 +732,7 @@ xg_show_tooltip (FRAME_PTR f, int root_x, int root_y)
 }
 
 /* Hide tooltip if shown.  Do nothing if not shown.
-   Return non-zero if tip was hidden, non-ero if not (i.e. not using
+   Return non-zero if tip was hidden, non-zero if not (i.e. not using
    system tooltips).  */
 
 int