parent
d4234710b5
commit
5f9f682483
|
@ -2896,12 +2896,14 @@ notebook_button_press_cb (GtkWidget *widget,
|
|||
TerminalWindow *window)
|
||||
{
|
||||
TerminalWindowPrivate *priv = window->priv;
|
||||
TerminalScreen *active_screen = priv->active_screen;
|
||||
GtkNotebook *notebook = GTK_NOTEBOOK (widget);
|
||||
GtkWidget *menu;
|
||||
GtkAction *action;
|
||||
int tab_clicked;
|
||||
|
||||
if (event->type == GDK_BUTTON_PRESS && event->button == 2)
|
||||
if ((event->type == GDK_BUTTON_PRESS && event->button == 2)
|
||||
&& !(confirm_close_window_or_tab (window, active_screen)))
|
||||
{
|
||||
tab_clicked = find_tab_num_at_pos (notebook, event->x_root, event->y_root);
|
||||
if (tab_clicked >= 0)
|
||||
|
|
Loading…
Reference in New Issue