summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/terminal-window.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/terminal-window.c b/src/terminal-window.c
index e9c23e0..4608267 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -2991,6 +2991,15 @@ notebook_button_press_cb (GtkWidget *widget,
}
}
+ /* If the event is a double click, display the set title dialog */
+ if (event->type == GDK_DOUBLE_BUTTON_PRESS)
+ {
+ terminal_set_title_callback (NULL, window);
+
+ /* handle ONLY the double-click event */
+ return TRUE;
+ }
+
if (event->type != GDK_BUTTON_PRESS ||
event->button != 3 ||
(event->state & gtk_accelerator_get_default_mod_mask ()) != 0)
@@ -4230,6 +4239,7 @@ terminal_set_title_dialog_response_cb (GtkWidget *dialog,
}
gtk_widget_destroy (dialog);
+ gtk_widget_grab_focus (GTK_WIDGET (screen));
}
static void