x11: Fix dnd action handling

We were mistakenly assigning an Atom to a flags value.
This commit is contained in:
Matthias Clasen 2018-06-20 18:06:35 -04:00
parent c6fa3c446c
commit 5c46c81067

View File

@ -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);
}
}
}