From 2c00fe9a48ea63e177b7f0e59867f31d83f04db6 Mon Sep 17 00:00:00 2001 From: Michael James Gratton Date: Sun, 5 Feb 2017 13:31:45 +1100 Subject: [PATCH] Add tooltips to composer spellcheck popover. --- src/client/composer/spell-check-popover.vala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/client/composer/spell-check-popover.vala b/src/client/composer/spell-check-popover.vala index c16b8968..0cc5221d 100644 --- a/src/client/composer/spell-check-popover.vala +++ b/src/client/composer/spell-check-popover.vala @@ -114,9 +114,11 @@ public class SpellCheckPopover { if (is_lang_visible) { remove_button.set_image(new Gtk.Image.from_icon_name("list-remove-symbolic", sz)); + remove_button.set_tooltip_text(_("Remove this language from the preferred list")); } else { remove_button.set_image(new Gtk.Image.from_icon_name("list-add-symbolic", sz)); + remove_button.set_tooltip_text(_("Add this language to the preferred list")); } }