hide tooltip while dragging
This commit is contained in:
@@ -960,6 +960,12 @@ namespace FlaxEngine.GUI
|
|||||||
[NoAnimate]
|
[NoAnimate]
|
||||||
public virtual DragDropEffect OnDragMove(ref Float2 location, DragData data)
|
public virtual DragDropEffect OnDragMove(ref Float2 location, DragData data)
|
||||||
{
|
{
|
||||||
|
// Update tooltip
|
||||||
|
if (_tooltipUpdate != null)
|
||||||
|
{
|
||||||
|
SetUpdate(ref _tooltipUpdate, null);
|
||||||
|
Tooltip.Hide();
|
||||||
|
}
|
||||||
return DragDropEffect.None;
|
return DragDropEffect.None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user