-
I tend to drag text often. I don't remember if Brackets used to do it or not. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Thanks for reporting the issue. The drag issue appears to a linux/mac desktop app specific issue(both of which uses webkit as rendering surface for phoenix code). It doesn't happen in windows and browser based apps under chrome/firefox. This must be some webkit specific css quirk. This appears to be default behavior for webkit engine. Maybe we may need to do this, or other css based solution. textarea.addEventListener("dragstart", (e) => {
const img = new Image();
img.src =
"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw=="; // transparent 1x1
e.dataTransfer.setDragImage(img, 0, 0);
}); @devvaannsh, For drag markers, what could have caused this behavior(the issue can be reproduced in the Linux desktop app). Will the above solution work when working with drag drop. |
Beta Was this translation helpful? Give feedback.
-
I had the same problem about 2 days ago. When I tried to drag it, it was white underlined, making it impossible to drag. I had the same problem with drag on keyboard. The problem was fatal to me because drag is essential for copying and pasting code. It was okay if I used Web Editor temporarily. I hope the issue will be resolved soon. |
Beta Was this translation helpful? Give feedback.
-
fixed by #2363 |
Beta Was this translation helpful? Give feedback.
fixed by #2363
The fix will be available in the September release of Phoenix Code