1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-01 01:41:01 -08:00

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.
This commit is contained in:
memeplex 2018-06-19 02:12:11 -03:00 committed by Noam Postavsky
parent 9a27310f0a
commit 8a7475ca79

View file

@ -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