diff options
-rw-r--r-- | pluma/pluma-notebook.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pluma/pluma-notebook.c b/pluma/pluma-notebook.c index bc5f30e9..d59003c2 100644 --- a/pluma/pluma-notebook.c +++ b/pluma/pluma-notebook.c @@ -650,8 +650,6 @@ button_press_cb (PlumaNotebook *notebook, (event->type == GDK_BUTTON_PRESS) && (tab_clicked >= 0)) { - leftdown = TRUE; - notebook->priv->x_start = event->x_root; notebook->priv->y_start = event->y_root; @@ -700,11 +698,13 @@ button_press_cb (PlumaNotebook *notebook, else if (event->type == GDK_2BUTTON_PRESS) { if ((tab1click != gtk_notebook_get_current_page (GTK_NOTEBOOK (notebook))) || - (tab_clicked >= 0) || ((tab_clicked == -1) && (!newfile))) + (tab_clicked >= 0) || ((tab_clicked == -1) && (!newfile)) || (!leftdown)) return TRUE; newfile = FALSE; } + + leftdown = TRUE; } return FALSE; |