diff options
author | jcid <devnull@localhost> | 2007-12-16 16:53:12 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-12-16 16:53:12 +0100 |
commit | 89f33088e8435d2df77f967a17b6639b181bfce2 (patch) | |
tree | d16a90bccf59d0b1098a94ef06c5ccf354dbc2a5 /src/nav.c | |
parent | c5432a8fcdab01dc1a28e903cf0f786cd60c8467 (diff) |
- Made "New browser window" inherit the panel style of its parent.
Diffstat (limited to 'src/nav.c')
-rw-r--r-- | src/nav.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |