summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@igalia.com>2016-03-05 11:26:03 -0600
committerMichael Catanzaro <mcatanzaro@igalia.com>2016-03-06 14:11:35 -0600
commit37478bfa7607e4cda21d410a7787e3e3855d78b8 (patch)
treeccba3caae2c4f4035e098e4026b0ea10057de330
parent00c91988aa652484a40b2aa681a7dcd803cd69a1 (diff)
downloadepiphany-wip/fixes.tar.gz
Activate downloads popover when adding any downloadwip/fixes
Otherwise, when adding downloads after the first download, it seems like nothing is happening when clicking on the download link, users might click and click and download the same file multiple times. https://bugzilla.gnome.org/show_bug.cgi?id=763141
-rw-r--r--src/ephy-toolbar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c
index d0530e931..aeec11399 100644
--- a/src/ephy-toolbar.c
+++ b/src/ephy-toolbar.c
@@ -59,9 +59,9 @@ download_added_cb (EphyDownloadsManager *manager,
toolbar->downloads_popover = ephy_downloads_popover_new (toolbar->downloads_button);
gtk_menu_button_set_popover (GTK_MENU_BUTTON (toolbar->downloads_button),
toolbar->downloads_popover);
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toolbar->downloads_button), TRUE);
}
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toolbar->downloads_button), TRUE);
gtk_revealer_set_reveal_child (GTK_REVEALER (toolbar->downloads_revealer), TRUE);
}