aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Sajdok <robert.sajdok@gmail.com>2010-12-13 17:40:23 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-13 17:40:23 +0800
commitb4930806a93a8b365400e563b8fa359c00c4016a (patch)
tree555828a87a00f2bd0926d534736f4ba934ef3e7d
parentf6180441540a3a19f4b61d5908c97ebc5b60e779 (diff)
downloadgsoc2013-empathy-b4930806a93a8b365400e563b8fa359c00c4016a.tar
gsoc2013-empathy-b4930806a93a8b365400e563b8fa359c00c4016a.tar.gz
gsoc2013-empathy-b4930806a93a8b365400e563b8fa359c00c4016a.tar.bz2
gsoc2013-empathy-b4930806a93a8b365400e563b8fa359c00c4016a.tar.lz
gsoc2013-empathy-b4930806a93a8b365400e563b8fa359c00c4016a.tar.xz
gsoc2013-empathy-b4930806a93a8b365400e563b8fa359c00c4016a.tar.zst
gsoc2013-empathy-b4930806a93a8b365400e563b8fa359c00c4016a.zip
main-window: add a tooltip on connection error info bars (#626507)
-rw-r--r--configure.ac2
-rw-r--r--src/empathy-main-window.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4ed8d9e24..1503cd810 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
dnl If not 1, append datestamp to the version number
-m4_define(empathy_released, 0)
+m4_define(empathy_released, 1)
m4_define([empathy_major_version], [2])
m4_define([empathy_minor_version], [91])
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c
index db5818c0c..64438ed0f 100644
--- a/src/empathy-main-window.c
+++ b/src/empathy-main-window.c
@@ -593,6 +593,7 @@ main_window_error_display (EmpathyMainWindow *window,
G_CALLBACK (main_window_error_retry_clicked_cb),
window);
+ gtk_widget_set_tooltip_text (priv->errors_vbox, error_message);
gtk_widget_show (priv->errors_vbox);
g_hash_table_insert (priv->errors, g_object_ref (account), info_bar);