Don't place dnd cursor in placeholder text

That is just misleading - the entire placeholder text is going
to be replaced by the drop.
This commit is contained in:
Matthias Clasen 2017-12-17 10:52:33 -05:00
parent 11bfce3f36
commit 7d23b33ac5

View File

@ -10029,8 +10029,11 @@ gtk_entry_drag_motion (GtkWidget *widget,
priv->dnd_position = -1;
}
if (show_placeholder_text (entry))
priv->dnd_position = -1;
gdk_drag_status (context, suggested_action, time);
if (priv->dnd_position == -1)
if (suggested_action == 0)
gtk_drag_unhighlight (widget);
else
gtk_drag_highlight (widget);