summaryrefslogtreecommitdiff
path: root/desktop/browser.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-07-25 14:34:46 +0100
committerVincent Sanders <vince@kyllikki.org>2014-07-27 18:07:00 +0100
commit984299e5b4feda4ffb6fd80f0d1f489c32e6d512 (patch)
treec1b133118420ca2b6e4a99ad1e3f643c31464404 /desktop/browser.c
parent8c57ad1e11b5b09d1c75087dcbe66fd220479407 (diff)
downloadnetsurf-984299e5b4feda4ffb6fd80f0d1f489c32e6d512.tar.gz
netsurf-984299e5b4feda4ffb6fd80f0d1f489c32e6d512.tar.bz2
remove assert for creating new browser context with the tab flag set.
This allows creation of new browsing contents (browser/gui window) in a tab but without explicitly providing a sibling browsing context to be placed with.
Diffstat (limited to 'desktop/browser.c')
-rw-r--r--desktop/browser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index c3432bef8..b71d3ffd4 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -694,7 +694,7 @@ nserror browser_window_create(enum browser_window_create_flags flags,
struct browser_window *ret;
/* Check parameters */
- if (flags & (BW_CREATE_TAB | BW_CREATE_CLONE)) {
+ if (flags & BW_CREATE_CLONE) {
if (existing == NULL) {
assert(0 && "Failed: No existing window provided.");
return NSERROR_BAD_PARAMETER;