Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.
/ jfx23u Public archive

8338306: WebView Drag and Drop fails with WebKit 619.1 #12

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -2250,8 +2250,10 @@ JNIEXPORT jint JNICALL Java_com_sun_webkit_WebPage_twkProcessDrag
case com_sun_webkit_WebPage_DND_DST_EXIT:
dc.dragExited(*localMainFrame,WTFMove(dragData));
return 0;
case com_sun_webkit_WebPage_DND_DST_ENTER:
case com_sun_webkit_WebPage_DND_DST_OVER:

case com_sun_webkit_WebPage_DND_DST_CHANGE:
return dragOperationToDragCursor(std::get<std::optional<WebCore::DragOperation>>(dc.dragEnteredOrUpdated(*localMainFrame, WTFMove(dragData))));
case com_sun_webkit_WebPage_DND_DST_DROP:
{
int ret = dc.performDragOperation(WTFMove(dragData)) ? 1 : 0;