summaryrefslogtreecommitdiff
path: root/src/nav.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-12-16 16:53:12 +0100
committerjcid <devnull@localhost>2007-12-16 16:53:12 +0100
commit89f33088e8435d2df77f967a17b6639b181bfce2 (patch)
treed16a90bccf59d0b1098a94ef06c5ccf354dbc2a5 /src/nav.c
parentc5432a8fcdab01dc1a28e903cf0f786cd60c8467 (diff)
- Made "New browser window" inherit the panel style of its parent.
Diffstat (limited to 'src/nav.c')
-rw-r--r--src/nav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nav.c b/src/nav.c
index 39638219..9da92686 100644
--- a/src/nav.c
+++ b/src/nav.c
@@ -315,7 +315,7 @@ void a_Nav_push_nw(BrowserWindow *bw, const DilloUrl *url)
BrowserWindow *newbw;
a_UIcmd_get_wh(bw, &w, &h);
- newbw = a_UIcmd_browser_window_new(w, h);
+ newbw = a_UIcmd_browser_window_new(w, h, bw->ui);
a_Nav_push(newbw, url);
}