mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
paned: don't claim drag-begin on invisible handle
Paned handles are hidden when any of its children are hidden too, but drag events were still accepted around the (virtual) handle position. Instead, deny drag-begin when handle is hidden. Fixes #6520 Closes #6520
This commit is contained in:
parent
8c96991ce0
commit
54264a9f78
@ -886,6 +886,14 @@ gesture_drag_begin_cb (GtkGestureDrag *gesture,
|
||||
GdkDevice *device;
|
||||
gboolean is_touch;
|
||||
|
||||
/* Only drag the handle when it's visible */
|
||||
if (!gtk_widget_get_child_visible (paned->handle_widget))
|
||||
{
|
||||
gtk_gesture_set_state (GTK_GESTURE (gesture),
|
||||
GTK_EVENT_SEQUENCE_DENIED);
|
||||
return;
|
||||
}
|
||||
|
||||
sequence = gtk_gesture_single_get_current_sequence (GTK_GESTURE_SINGLE (gesture));
|
||||
event = gtk_gesture_get_last_event (GTK_GESTURE (gesture), sequence);
|
||||
device = gdk_event_get_device (event);
|
||||
|
Loading…
Reference in New Issue
Block a user