[epiphany] title-box: Add GDK_POINTER_MOTION_MASK to the title box event mask



commit 68b142085515ed5dbeaf233129e75134d746cfd5
Author: Carlos Garcia Campos <cgarcia igalia com>
Date:   Wed Feb 19 11:05:20 2014 +0100

    title-box: Add GDK_POINTER_MOTION_MASK to the title box event mask
    
    That way we always receive motion events and the window can be moved by
    dragging in the title box even if the location entry mode is disabled.

 src/ephy-title-box.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/src/ephy-title-box.c b/src/ephy-title-box.c
index f11de67..bc3a11c 100644
--- a/src/ephy-title-box.c
+++ b/src/ephy-title-box.c
@@ -236,6 +236,7 @@ ephy_title_box_constructed (GObject *object)
 
   gtk_widget_add_events (GTK_WIDGET (title_box),
                          GDK_BUTTON_PRESS_MASK |
+                         GDK_POINTER_MOTION_MASK |
                          GDK_BUTTON_RELEASE_MASK);
 
   ephy_title_box_add_address_bar (title_box);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]