emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 8a7475c: Remove broken icon from tooltip (Bug#31884


From: Noam Postavsky
Subject: [Emacs-diffs] master 8a7475c: Remove broken icon from tooltip (Bug#31884)
Date: Thu, 21 Jun 2018 20:17:08 -0400 (EDT)

branch: master
commit 8a7475ca796ecd5816fab9f11baf07bcc395d951
Author: memeplex <address@hidden>
Commit: Noam Postavsky <address@hidden>

    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.
---
 src/gtkutil.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gtkutil.c b/src/gtkutil.c
index 8cc5236..69325ff 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]