From 5c594b0747b1f274b64ecc0fbb866793f6e5ff4a Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Sun, 20 Sep 2009 17:55:16 +0300 Subject: ephy-notebook.c: better yet, get rid of the test completely Since gtk_notebook_get_nth_page, used just after that, returns NULL for out-of-bounds pages. --- src/ephy-notebook.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index a7a6fa110..9121452b9 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -248,13 +248,6 @@ find_tab_num_at_pos (EphyNotebook *notebook, gint abs_x, gint abs_y) GtkNotebook *nb = GTK_NOTEBOOK (notebook); GtkWidget *page; - tab_pos = gtk_notebook_get_tab_pos (nb); - - if (gtk_notebook_get_n_pages (nb) == 0) - { - return AFTER_ALL_TABS; - } - /* For some reason unfullscreen + quick click can cause a wrong click event to be reported to the tab */ if (!is_in_notebook_window (notebook, abs_x, abs_y)) @@ -262,6 +255,8 @@ find_tab_num_at_pos (EphyNotebook *notebook, gint abs_x, gint abs_y) return NOT_IN_APP_WINDOWS; } + tab_pos = gtk_notebook_get_tab_pos (nb); + while ((page = gtk_notebook_get_nth_page (nb, page_num))) { GtkWidget *tab; -- cgit v1.2.3