We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following code is intended to fix the bug when drag & drop file from 32 bit app to 64 bit Notepad2 (see https://stackoverflow.com/questions/39612616/drag-and-drop-from-32-to-64-bit/39664759#39664759): https://github.com/zufuliu/notepad2/blob/361dfdee4dbb24965e01c7811062f4aee14c7279/scintilla/win32/ScintillaWin.cxx#L3887-L3888
However this cause (tested on Win 10) main windows receives two WM_DROPFILES messages (with identical wParam and lParam). https://github.com/zufuliu/notepad2/blob/361dfdee4dbb24965e01c7811062f4aee14c7279/src/Notepad2.c#L1241-L1244
WM_DROPFILES
wParam
lParam
The text was updated successfully, but these errors were encountered:
Fix file been loaded twice after dropped onto Notepad2, issue #703.
3fb3db6
Fixed by 3fb3db6.
Sorry, something went wrong.
No branches or pull requests
Following code is intended to fix the bug when drag & drop file from 32 bit app to 64 bit Notepad2 (see https://stackoverflow.com/questions/39612616/drag-and-drop-from-32-to-64-bit/39664759#39664759):
https://github.com/zufuliu/notepad2/blob/361dfdee4dbb24965e01c7811062f4aee14c7279/scintilla/win32/ScintillaWin.cxx#L3887-L3888
However this cause (tested on Win 10) main windows receives two
WM_DROPFILES
messages (with identicalwParam
andlParam
).https://github.com/zufuliu/notepad2/blob/361dfdee4dbb24965e01c7811062f4aee14c7279/src/Notepad2.c#L1241-L1244
The text was updated successfully, but these errors were encountered: