From: memeplex Date: Tue, 19 Jun 2018 05:12:11 +0000 (-0300) Subject: Remove broken icon from tooltip (Bug#31884) X-Git-Tag: emacs-27.0.90~4783 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8a7475ca796ecd5816fab9f11baf07bcc395d951;p=emacs.git Remove broken icon from tooltip (Bug#31884) * src/gtkutil.c (xg_show_tooltip): Call gtk_widget_show instead of gtk_widget_show_all, the latter displays an extra placeholder icon. --- diff --git a/src/gtkutil.c b/src/gtkutil.c index 8cc523649d9..69325ff00af 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c @@ -764,7 +764,7 @@ xg_show_tooltip (struct frame *f, int root_x, int root_y) block_input (); gtk_window_move (x->ttip_window, root_x / xg_get_scale (f), root_y / xg_get_scale (f)); - gtk_widget_show_all (GTK_WIDGET (x->ttip_window)); + gtk_widget_show (GTK_WIDGET (x->ttip_window)); unblock_input (); } #endif