summaryrefslogtreecommitdiff
path: root/browser.c
diff options
context:
space:
mode:
authorPeter Hofmann <scm@uninformativ.de>2014-12-14 14:38:23 +0100
committerPeter Hofmann <scm@uninformativ.de>2014-12-14 14:40:04 +0100
commit7e426ffa6a3da51e9d2957486d495e80e1dea4d8 (patch)
treee0c579ec82e045793c8e60a39f0afd069e33cb51 /browser.c
parentc18cc3dc6aee850c7aa7d47ac29f6d602ee30b21 (diff)
downloadlariza-7e426ffa6a3da51e9d2957486d495e80e1dea4d8.tar.gz
Show the download manager when a download starts
This is kind of a quickfix as well (related to #10). I'll have to use this for a while to see if I'm happy with it.
Diffstat (limited to 'browser.c')
-rw-r--r--browser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/browser.c b/browser.c
index 4a1c5e2..0479803 100644
--- a/browser.c
+++ b/browser.c
@@ -397,7 +397,7 @@ download_handle(WebKitDownload *download, gchar *suggested_filename, gpointer da
gtk_tool_button_set_icon_name(GTK_TOOL_BUTTON(tb), "gtk-delete");
gtk_tool_button_set_label(GTK_TOOL_BUTTON(tb), suggested_filename);
gtk_toolbar_insert(GTK_TOOLBAR(dm.toolbar), tb, 0);
- gtk_widget_show_all(dm.toolbar);
+ gtk_widget_show_all(dm.win);
g_signal_connect(G_OBJECT(download), "notify::estimated-progress",
G_CALLBACK(changed_download_progress), tb);