aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <descalante@igalia.com>2010-03-03 07:28:06 +0800
committerDiego Escalante Urrelo <descalante@igalia.com>2010-03-09 23:38:26 +0800
commit1e1799a6c26cf011d3cc545e83f67d3a6b68e81e (patch)
tree7538bae020ae016d24264e91d9bf82e21d17c0c0 /embed
parent34225b960b566b75a401a7e279978da8090d75db (diff)
downloadgsoc2013-epiphany-1e1799a6c26cf011d3cc545e83f67d3a6b68e81e.tar
gsoc2013-epiphany-1e1799a6c26cf011d3cc545e83f67d3a6b68e81e.tar.gz
gsoc2013-epiphany-1e1799a6c26cf011d3cc545e83f67d3a6b68e81e.tar.bz2
gsoc2013-epiphany-1e1799a6c26cf011d3cc545e83f67d3a6b68e81e.tar.lz
gsoc2013-epiphany-1e1799a6c26cf011d3cc545e83f67d3a6b68e81e.tar.xz
gsoc2013-epiphany-1e1799a6c26cf011d3cc545e83f67d3a6b68e81e.tar.zst
gsoc2013-epiphany-1e1799a6c26cf011d3cc545e83f67d3a6b68e81e.zip
downloader-view: handle DOWNLOAD_ACTION_DOWNLOAD action
Otherwise we will hit an assert. Bug #611635
Diffstat (limited to 'embed')
-rw-r--r--embed/downloader-view.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/embed/downloader-view.c b/embed/downloader-view.c
index de15dbb04..b7bfd766e 100644
--- a/embed/downloader-view.c
+++ b/embed/downloader-view.c
@@ -492,6 +492,8 @@ update_download_row (DownloaderView *dv, WebKitDownload *download)
case DOWNLOAD_ACTION_OPEN_LOCATION:
open_downloaded_file_location (dv, download);
break;
+ case DOWNLOAD_ACTION_DOWNLOAD:
+ break;
default:
g_assert_not_reached ();
break;