diff options
author | Thomas James Alexander Thurman <tthurman@src.gnome.org> | 2008-12-19 12:47:11 +0000 |
---|---|---|
committer | Thomas James Alexander Thurman <tthurman@src.gnome.org> | 2008-12-19 12:47:11 +0000 |
commit | 38faa8fe109071dcb9c49fdbc13774d13f4691ee (patch) | |
tree | ff973bb53d8fbb34fb1dfbd5ead50daf21822c50 /src/ui | |
parent | 9abdc6c0fab7b66380f1f1eb555c89cbc1131e1d (diff) | |
download | metacity-38faa8fe109071dcb9c49fdbc13774d13f4691ee.tar.gz metacity-38faa8fe109071dcb9c49fdbc13774d13f4691ee.tar.bz2 |
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
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/frames.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/frames.c b/src/ui/frames.c index 093af92..700e747 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); } |