From b77658247204d1ef31da4b3bc20c58cc3ad5c2a3 Mon Sep 17 00:00:00 2001 From: Gonzalo Odiard Date: Tue, 14 Jan 2014 20:43:22 +0000 Subject: Make consistent the tooltip of the show/hide tray button Fixes #4712. Signed-off-by: Gonzalo Odiard --- (limited to 'webactivity.py') diff --git a/webactivity.py b/webactivity.py index 43267e2..cfaa240 100644 --- a/webactivity.py +++ b/webactivity.py @@ -614,6 +614,7 @@ class WebActivity(activity.Activity): item.show() self._view_toolbar.traybutton.props.sensitive = True self._view_toolbar.traybutton.props.active = True + self._view_toolbar.update_traybutton_tooltip() def _link_removed_cb(self, button, hash): ''' remove a link from tray and delete it in the model ''' @@ -622,6 +623,7 @@ class WebActivity(activity.Activity): if len(self._tray.get_children()) == 0: self._view_toolbar.traybutton.props.sensitive = False self._view_toolbar.traybutton.props.active = False + self._view_toolbar.update_traybutton_tooltip() def _link_clicked_cb(self, button, url): ''' an item of the link tray has been clicked ''' -- cgit v0.9.1