aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-shell.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2003-04-30 21:11:37 +0800
committerXan Lopez <xan@src.gnome.org>2003-04-30 21:11:37 +0800
commit701cb67fe785b4562adbdbeeaf7b2667cc4970a3 (patch)
tree267224c04c6881ada4bf929a308063503e2f40f0 /src/ephy-shell.c
parent1e87821a2fffbad162cdd36a3f80e7f43021e803 (diff)
downloadgsoc2013-epiphany-701cb67fe785b4562adbdbeeaf7b2667cc4970a3.tar
gsoc2013-epiphany-701cb67fe785b4562adbdbeeaf7b2667cc4970a3.tar.gz
gsoc2013-epiphany-701cb67fe785b4562adbdbeeaf7b2667cc4970a3.tar.bz2
gsoc2013-epiphany-701cb67fe785b4562adbdbeeaf7b2667cc4970a3.tar.lz
gsoc2013-epiphany-701cb67fe785b4562adbdbeeaf7b2667cc4970a3.tar.xz
gsoc2013-epiphany-701cb67fe785b4562adbdbeeaf7b2667cc4970a3.tar.zst
gsoc2013-epiphany-701cb67fe785b4562adbdbeeaf7b2667cc4970a3.zip
Respect all the new_tab used flags, drop unused ones. Patch by Christian
Respect all the new_tab used flags, drop unused ones. Patch by Christian Perch <chpe+gnomebugz@stud.uni-saarland.de>
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r--src/ephy-shell.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c
index 51b53c7d6..c37aa8b31 100644
--- a/src/ephy-shell.c
+++ b/src/ephy-shell.c
@@ -522,6 +522,9 @@ ephy_shell_new_tab (EphyShell *shell,
grouped = TRUE;
}
+ if (flags & EPHY_NEW_TAB_APPEND_GROUPED) grouped = TRUE;
+ if (flags & EPHY_NEW_TAB_APPEND_LAST) grouped = FALSE;
+
tab = ephy_tab_new ();
embed = ephy_tab_get_embed (tab);
gtk_widget_show (GTK_WIDGET(embed));