diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-05-01 15:38:31 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-05-01 15:38:31 +0800 |
commit | ea43a991f445a7fc91d06df2633ef4f9920ffc60 (patch) | |
tree | 228bf95ec839c0a421f3471bf13f2207c46a9b1e /src/ephy-link.h | |
parent | 87e2892e39713d4e2baa955d1c2b36cb194db8e4 (diff) | |
download | gsoc2013-epiphany-ea43a991f445a7fc91d06df2633ef4f9920ffc60.tar gsoc2013-epiphany-ea43a991f445a7fc91d06df2633ef4f9920ffc60.tar.gz gsoc2013-epiphany-ea43a991f445a7fc91d06df2633ef4f9920ffc60.tar.bz2 gsoc2013-epiphany-ea43a991f445a7fc91d06df2633ef4f9920ffc60.tar.lz gsoc2013-epiphany-ea43a991f445a7fc91d06df2633ef4f9920ffc60.tar.xz gsoc2013-epiphany-ea43a991f445a7fc91d06df2633ef4f9920ffc60.tar.zst gsoc2013-epiphany-ea43a991f445a7fc91d06df2633ef4f9920ffc60.zip |
Be smarter about tab grouping
The previous patch was simply grouping new tabs in the current window
always, which is too much. For instance, we don't want to group
Ctrl+T.
Diffstat (limited to 'src/ephy-link.h')
-rw-r--r-- | src/ephy-link.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ephy-link.h b/src/ephy-link.h index 5d1a7f8c8..af293f379 100644 --- a/src/ephy-link.h +++ b/src/ephy-link.h @@ -43,9 +43,10 @@ typedef struct _EphyLinkIface EphyLinkIface; typedef enum { - EPHY_LINK_NEW_WINDOW = 1 << 0, - EPHY_LINK_NEW_TAB = 1 << 1, - EPHY_LINK_JUMP_TO = 1 << 2, + EPHY_LINK_NEW_WINDOW = 1 << 0, + EPHY_LINK_NEW_TAB = 1 << 1, + EPHY_LINK_JUMP_TO = 1 << 2, + EPHY_LINK_NEW_TAB_APPEND_AFTER = 1 << 3 } EphyLinkFlags; struct _EphyLinkIface |