From 6151b683ad18422734f645f4ae8825c2c68d2d00 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 11 Jul 2007 10:22:16 +0000 Subject: [PATCH] show tooltip in systray when only one account too --- src/tooltips.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/tooltips.py b/src/tooltips.py index 04edc74bf..8e32d2dc7 100644 --- a/src/tooltips.py +++ b/src/tooltips.py @@ -257,9 +257,8 @@ class NotificationAreaTooltip(BaseTooltip, StatusTable): self.create_table() accounts = helpers.get_notification_icon_tooltip_dict() - if len(accounts) > 1: - self.table.resize(2, 1) - self.fill_table_with_accounts(accounts) + self.table.resize(2, 1) + self.fill_table_with_accounts(accounts) self.hbox = gtk.HBox() self.table.set_property('column-spacing', 1)