diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-09-01 18:12:09 +0800 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-09-06 18:08:12 +0800 |
commit | 60d158ac379d725e0ecd91c74ea7de7a65b212bc (patch) | |
tree | d482480fcc92f369482faba30c6dfa46b2a55924 /libempathy-gtk/empathy-linking-dialog.c | |
parent | a32e3cde4a0f551169367baeadfc76587eae2b29 (diff) | |
download | gsoc2013-empathy-60d158ac379d725e0ecd91c74ea7de7a65b212bc.tar gsoc2013-empathy-60d158ac379d725e0ecd91c74ea7de7a65b212bc.tar.gz gsoc2013-empathy-60d158ac379d725e0ecd91c74ea7de7a65b212bc.tar.bz2 gsoc2013-empathy-60d158ac379d725e0ecd91c74ea7de7a65b212bc.tar.lz gsoc2013-empathy-60d158ac379d725e0ecd91c74ea7de7a65b212bc.tar.xz gsoc2013-empathy-60d158ac379d725e0ecd91c74ea7de7a65b212bc.tar.zst gsoc2013-empathy-60d158ac379d725e0ecd91c74ea7de7a65b212bc.zip |
Add a tooltip to the “Unlink” button
Closes: bgo#628376
Diffstat (limited to 'libempathy-gtk/empathy-linking-dialog.c')
-rw-r--r-- | libempathy-gtk/empathy-linking-dialog.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-linking-dialog.c b/libempathy-gtk/empathy-linking-dialog.c index d1df295b3..cb6461a81 100644 --- a/libempathy-gtk/empathy-linking-dialog.c +++ b/libempathy-gtk/empathy-linking-dialog.c @@ -118,6 +118,8 @@ empathy_linking_dialog_init (EmpathyLinkingDialog *self) /* Unlink button */ button = gtk_button_new_with_mnemonic ( C_("Unlink individual (button)", "_Unlink…")); + gtk_widget_set_tooltip_text (button, _("Completely split the displayed " + "meta-contact into the contacts it contains.")); gtk_dialog_add_action_widget (dialog, button, RESPONSE_UNLINK); gtk_widget_show (button); |