1
0
forked from aniani/vim

updated for version 7.1-109

This commit is contained in:
Bram Moolenaar
2007-09-15 12:07:46 +00:00
parent 5365c4d590
commit 073545473f
3 changed files with 7 additions and 2 deletions

View File

@@ -3223,8 +3223,9 @@ on_tabline_menu(GtkWidget *widget, GdkEvent *event)
{
if (clicked_page == 0)
{
/* Click after all tabs moves to next tab page. */
if (send_tabline_event(0) && gtk_main_level() > 0)
/* Click after all tabs moves to next tab page. When "x" is
* small guess it's the left button. */
if (send_tabline_event(x < 50 ? -1 : 0) && gtk_main_level() > 0)
gtk_main_quit();
}
#ifndef HAVE_GTK2