aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-notebook.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-05-31 06:39:33 +0800
committerChristian Persch <chpe@src.gnome.org>2005-05-31 06:39:33 +0800
commit30457fd1bc79dfc4e2fc36a165de0abf1b1d5b77 (patch)
tree4c3571bc4f1ddd368bc3fd52ca29edeb01f8773b /src/ephy-notebook.c
parentda1e2abce4ee3f0d619dfb99573ecc563c266cdd (diff)
downloadgsoc2013-epiphany-30457fd1bc79dfc4e2fc36a165de0abf1b1d5b77.tar
gsoc2013-epiphany-30457fd1bc79dfc4e2fc36a165de0abf1b1d5b77.tar.gz
gsoc2013-epiphany-30457fd1bc79dfc4e2fc36a165de0abf1b1d5b77.tar.bz2
gsoc2013-epiphany-30457fd1bc79dfc4e2fc36a165de0abf1b1d5b77.tar.lz
gsoc2013-epiphany-30457fd1bc79dfc4e2fc36a165de0abf1b1d5b77.tar.xz
gsoc2013-epiphany-30457fd1bc79dfc4e2fc36a165de0abf1b1d5b77.tar.zst
gsoc2013-epiphany-30457fd1bc79dfc4e2fc36a165de0abf1b1d5b77.zip
Work around mozilla bug
2005-05-31 Christian Persch <chpe@cvs.gnome.org> * src/ephy-notebook.c: (ephy_notebook_move_tab), (move_tab_to_another_notebook), (button_release_cb): * src/ephy-window.c: (update_tabs_menu_sensitivity): Work around mozilla bug https://bugzilla.mozilla.org/show_bug.cgi?id=296002 by disallowing tabs moves to a different window. Bug #303922.
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r--src/ephy-notebook.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index 182849ce6..bd953fca7 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -59,6 +59,9 @@
#define INSANE_NUMBER_OF_URLS 20
+/* Until https://bugzilla.mozilla.org/show_bug.cgi?id=296002 is fixed */
+#define KEEP_TAB_IN_SAME_TOPLEVEL
+
#define EPHY_NOTEBOOK_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_NOTEBOOK, EphyNotebookPrivate))
struct _EphyNotebookPrivate
@@ -421,6 +424,7 @@ ephy_notebook_move_tab (EphyNotebook *src,
g_signal_emit (G_OBJECT (src), signals[TABS_REORDERED], 0);
}
}
+#ifndef KEEP_TAB_IN_SAME_TOPLEVEL
else
{
/* make sure the tab isn't destroyed while we move it */
@@ -429,6 +433,7 @@ ephy_notebook_move_tab (EphyNotebook *src,
ephy_notebook_add_tab (dest, tab, dest_position, TRUE);
g_object_unref (tab);
}
+#endif
}
static void
@@ -543,6 +548,7 @@ move_tab_to_another_notebook (EphyNotebook *src,
GdkEventMotion *event,
int dest_position)
{
+#ifndef KEEP_TAB_IN_SAME_TOPLEVEL
EphyTab *tab;
int cur_page;
@@ -580,6 +586,7 @@ move_tab_to_another_notebook (EphyNotebook *src,
NULL);
drag_start (dest, event->time);
+#endif /* KEEP_TAB_IN_SAME_TOPLEVEL */
}
static gboolean
@@ -597,6 +604,7 @@ button_release_cb (EphyNotebook *notebook,
cur_page = gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook),
cur_page_num);
+#ifndef KEEP_TAB_IN_SAME_TOPLEVEL
if (!is_in_notebook_window (notebook, event->x_root, event->y_root)
&& gtk_notebook_get_n_pages (GTK_NOTEBOOK (notebook)) > 1)
{
@@ -604,6 +612,7 @@ button_release_cb (EphyNotebook *notebook,
g_signal_emit (G_OBJECT (notebook),
signals[TAB_DETACHED], 0, cur_page);
}
+#endif
/* ungrab the pointer if it's grabbed */
if (gdk_pointer_is_grabbed ())