From 38faa8fe109071dcb9c49fdbc13774d13f4691ee Mon Sep 17 00:00:00 2001 From: Thomas James Alexander Thurman Date: Fri, 19 Dec 2008 12:47:11 +0000 Subject: [PATCH] when the user double-clicks the title bar, end the grab op. Closes * src/ui/frames.c: when the user double-clicks the title bar, end the grab op. Closes #401028. svn path=/trunk/; revision=4059 --- ChangeLog | 5 +++++ src/ui/frames.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4aaea5743..507f42e78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-12-19 Thomas Thurman + + * src/ui/frames.c: when the user double-clicks the title bar, + end the grab op. Closes #401028. + 2008-12-16 Thomas Thurman * configure.in: Post-release bump to 2.25.89. diff --git a/src/ui/frames.c b/src/ui/frames.c index 093af9216..700e7471d 100644 --- a/src/ui/frames.c +++ b/src/ui/frames.c @@ -1388,6 +1388,7 @@ meta_frames_button_press_event (GtkWidget *widget, event->button == 1 && event->type == GDK_2BUTTON_PRESS) { + meta_core_end_grab_op (gdk_display, event->time); return meta_frame_double_click_event (frame, event); }