diff options
-rw-r--r-- | src/caja-notebook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caja-notebook.c b/src/caja-notebook.c index 035ef769..2bd6a208 100644 --- a/src/caja-notebook.c +++ b/src/caja-notebook.c @@ -220,7 +220,7 @@ button_press_cb (CajaNotebook *notebook, tab_clicked = find_tab_num_at_pos (notebook, event->x_root, event->y_root); if (event->type == GDK_BUTTON_PRESS && - event->button == 3 && + (event->button == 3 || event->button == 2) && (event->state & gtk_accelerator_get_default_mod_mask ()) == 0) { if (tab_clicked == -1) |