about summary refs log tree commit diff stats
path: root/xombrero.c
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2012-07-04 10:36:00 -0500
committerMarco Peereboom <marco@conformal.com>2012-07-04 10:36:00 -0500
commited861c67e10a0a24056dca7a921427391b941a88 (patch)
tree27d0af5b674b422b7b40235274463f5b73a4a40b /xombrero.c
parent712d7fea6bf52eec103edf78381288c6f3d61428 (diff)
downloadxombrero-ed861c67e10a0a24056dca7a921427391b941a88.tar.gz
bring back notification of download start
This restores the prior GUI behavior.  Hide the asynchronous download
complete message behind the download_notifications setting which is
disruptive and racy.
Diffstat (limited to 'xombrero.c')
-rw-r--r--xombrero.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/xombrero.c b/xombrero.c
index baaecde..3802e0e 100644
--- a/xombrero.c
+++ b/xombrero.c
@@ -5169,9 +5169,8 @@ download_start(struct tab *t, struct download *d, int flag)
 
 		/* get from history */
 		g_object_ref(d->download);
-		if (download_notifications)
-			show_oops(t, "Download of '%s' started...",
-			    basename((char *)webkit_download_get_destination_uri(d->download)));
+		show_oops(t, "Download of '%s' started...",
+		    basename((char *)webkit_download_get_destination_uri(d->download)));
 	}
 
 	if (flag != XT_DL_START)