Commit 48957e7c authored by Claes Sjofors's avatar Claes Sjofors

Brow and grow: GDK_STRUCTURE_MASK added to eventmask to receive Map/Unmap events

parent fafdae06
......@@ -311,7 +311,8 @@ static void browwidgetgtk_realize( GtkWidget *widget)
GDK_BUTTON_MOTION_MASK |
GDK_ENTER_NOTIFY_MASK |
GDK_LEAVE_NOTIFY_MASK |
GDK_SCROLL_MASK;
GDK_SCROLL_MASK |
GDK_STRUCTURE_MASK;
attr.visual = gtk_widget_get_visual( widget);
attr.colormap = gtk_widget_get_colormap( widget);
......
......@@ -324,7 +324,8 @@ static void growwidgetgtk_realize( GtkWidget *widget)
GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK |
GDK_BUTTON_MOTION_MASK |
GDK_ENTER_NOTIFY_MASK |
GDK_LEAVE_NOTIFY_MASK;
GDK_LEAVE_NOTIFY_MASK |
GDK_STRUCTURE_MASK;
attr.visual = gtk_widget_get_visual( widget);
attr.colormap = gtk_widget_get_colormap( widget);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment