https://bugs.kde.org/show_bug.cgi?id=463201
--- Comment #1 from Gaël Bonithon <trash.parad...@protonmail.com> --- More precisely, the problem seems to occur only when using a box: this code put in the GtkWidget::query-tooltip signal handler works correctly: ``` gtk_tooltip_set_custom (tooltip, gtk_label_new ("test")); ``` while this one allows to reproduce the bug: ``` GtkWidget *label = gtk_label_new ("test"); GtkWidget *box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); gtk_box_pack_start (GTK_BOX (box), label, TRUE, FALSE, 0); gtk_widget_show_all (box); gtk_tooltip_set_custom (tooltip, box); ``` -- You are receiving this mail because: You are watching all bug changes.