Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • main
1 result

Target

Select target project
  • FrameIT/unity-webview
1 result
Select Git revision
  • main
1 result
Show changes

Commits on Source 1

...@@ -140,7 +140,7 @@ namespace bessw.Unity.WebView ...@@ -140,7 +140,7 @@ namespace bessw.Unity.WebView
// On drag over // On drag over
if (eventData.dragging) if (eventData.dragging)
{ {
Debug.LogWarning($"OnDragOver: {eventData.position}"); //Debug.LogWarning($"OnDragOver: {eventData.position}");
createDragEvent(DragEventType.dragOver, eventData); createDragEvent(DragEventType.dragOver, eventData);
} }
} }
...@@ -202,7 +202,7 @@ namespace bessw.Unity.WebView ...@@ -202,7 +202,7 @@ namespace bessw.Unity.WebView
x = position.x, x = position.x,
y = position.y, y = position.y,
}; };
Debug.LogWarning($"DragEvent: {dragEvent.type}, {eventData.position}, '{dragEvent.data.items[0].data}'"); //Debug.LogWarning($"DragEvent: {dragEvent.type}, {eventData.position}, '{dragEvent.data.items[0].data}'");
// send the DragEvent as drag event to the browser // send the DragEvent as drag event to the browser
tab.OnDragNDrop(dragEvent); tab.OnDragNDrop(dragEvent);
} }
......