diff options
author | Xan Lopez <xan@src.gnome.org> | 2003-05-22 04:25:47 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2003-05-22 04:25:47 +0800 |
commit | c27659161ffabf18a7c537291c297382dba182e7 (patch) | |
tree | dbe71e0dddafb512e46c57e58f3c59b8f713b580 /src/ephy-window.c | |
parent | 537c11b20fd83ecf1194967fb6117be8061a22c6 (diff) | |
download | gsoc2013-epiphany-c27659161ffabf18a7c537291c297382dba182e7.tar gsoc2013-epiphany-c27659161ffabf18a7c537291c297382dba182e7.tar.gz gsoc2013-epiphany-c27659161ffabf18a7c537291c297382dba182e7.tar.bz2 gsoc2013-epiphany-c27659161ffabf18a7c537291c297382dba182e7.tar.lz gsoc2013-epiphany-c27659161ffabf18a7c537291c297382dba182e7.tar.xz gsoc2013-epiphany-c27659161ffabf18a7c537291c297382dba182e7.tar.zst gsoc2013-epiphany-c27659161ffabf18a7c537291c297382dba182e7.zip |
Yet more new tab logic fixes.
Yet more new tab logic fixes.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index aa7d4bbcd..69c6b3a42 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -14,6 +14,8 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ */ #ifdef HAVE_CONFIG_H @@ -350,7 +352,8 @@ ephy_window_selection_received_cb (GtkWidget *widget, if (location != NULL && strcmp (location, "about:blank") != 0) { ephy_shell_new_tab (ephy_shell, window, tab, - selection_data->data, 0); + selection_data->data, + EPHY_NEW_TAB_OPEN_PAGE); } else { |