diff options
author | Xan Lopez <xan@gnome.org> | 2010-05-13 19:17:09 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-05-13 19:17:09 +0800 |
commit | 36d9f9be4a55a44f6797716c4850341a348b75ad (patch) | |
tree | 34d4d22af226895bcb89a5e17be22a063e64830b /src/ephy-window.c | |
parent | a3f08a52b5b93c67665ad9ca4341e30940538cf1 (diff) | |
download | gsoc2013-epiphany-36d9f9be4a55a44f6797716c4850341a348b75ad.tar gsoc2013-epiphany-36d9f9be4a55a44f6797716c4850341a348b75ad.tar.gz gsoc2013-epiphany-36d9f9be4a55a44f6797716c4850341a348b75ad.tar.bz2 gsoc2013-epiphany-36d9f9be4a55a44f6797716c4850341a348b75ad.tar.lz gsoc2013-epiphany-36d9f9be4a55a44f6797716c4850341a348b75ad.tar.xz gsoc2013-epiphany-36d9f9be4a55a44f6797716c4850341a348b75ad.tar.zst gsoc2013-epiphany-36d9f9be4a55a44f6797716c4850341a348b75ad.zip |
Remove popup state from the statusbar
The whole feature is kind of broken anyway. When we fix we'll figure
out how to show it in the UI.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 31502ee4a..4b394ae11 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -1762,27 +1762,7 @@ sync_tab_popup_windows (EphyWebView *view, GParamSpec *pspec, EphyWindow *window) { - guint num_popups = 0; - char *tooltip = NULL; - - g_object_get (view, - "hidden-popup-count", &num_popups, - NULL); - - if (num_popups > 0) - { - tooltip = g_strdup_printf (ngettext ("%d hidden popup window", - "%d hidden popup windows", - num_popups), - num_popups); - } - - ephy_statusbar_set_popups_state - (EPHY_STATUSBAR (window->priv->statusbar), - tooltip == NULL, - tooltip); - - g_free (tooltip); + /* FIXME: show popup count somehow */ } static void |