From 6bfa70fc7045669be435d3757456e1da7d341927 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Fri, 29 Jul 2022 19:54:54 +0200 Subject: Disable tooltips for GTK 4.6.4 - 4.6.6 A bug in GTK caused the application to crash in some tooltip-related conditions https://gitlab.gnome.org/GNOME/gtk/-/issues/4941 --- main/src/ui/conversation_titlebar/menu_entry.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/src/ui/conversation_titlebar/menu_entry.vala') diff --git a/main/src/ui/conversation_titlebar/menu_entry.vala b/main/src/ui/conversation_titlebar/menu_entry.vala index 28a06c24..7b484219 100644 --- a/main/src/ui/conversation_titlebar/menu_entry.vala +++ b/main/src/ui/conversation_titlebar/menu_entry.vala @@ -23,9 +23,9 @@ class MenuEntry : Plugins.ConversationTitlebarEntry, Object { button.sensitive = true; this.conversation = conversation; if (conversation.type_ == Conversation.Type.GROUPCHAT) { - button.tooltip_text = "Channel details"; + button.tooltip_text = Util.string_if_tooltips_active("Channel details"); } else { - button.tooltip_text = "Conversation details"; + button.tooltip_text = Util.string_if_tooltips_active("Conversation details"); } } -- cgit v1.2.3-54-g00ecf