mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 22:20:24 +00:00
x11: Fix dnd action handling
We were mistakenly assigning an Atom to a flags value.
This commit is contained in:
parent
c6fa3c446c
commit
5c46c81067
@ -886,8 +886,8 @@ gdk_x11_drag_context_handle_status (GdkDisplay *display,
|
||||
|
||||
if (context->action != context_x11->current_action)
|
||||
{
|
||||
context_x11->current_action = action;
|
||||
g_signal_emit_by_name (context, "action-changed", action);
|
||||
context_x11->current_action = context->action;
|
||||
g_signal_emit_by_name (context, "action-changed", context->action);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user