Fix unexpected behaviour after double clicking an URL

Close #5529
This commit is contained in:
Don HO 2019-04-17 20:50:08 +02:00
parent 687c6486a3
commit b2191e9e6f
No known key found for this signature in database
GPG Key ID: 6C429F1D8D84F46E
1 changed files with 3 additions and 2 deletions

View File

@ -1013,9 +1013,10 @@ BOOL Notepad_plus::notify(SCNotification *notification)
generic_string url = notifyView->getGenericTextAsString(startPos, endPos);
// remove the flickering: it seems a mouse click is missing after SCN_HOTSPOTDOUBLECLICK
::PostMessage(notifyView->getHSelf(), WM_LBUTTONDOWN, 0, 0);
// remove the flickering: it seems a mouse left button up is missing after SCN_HOTSPOTDOUBLECLICK
::PostMessage(notifyView->getHSelf(), WM_LBUTTONUP, 0, 0);
auto curPos = notifyView->execute(SCI_GETCURRENTPOS);
notifyView->execute(SCI_SETSEL, curPos, curPos);
::ShellExecute(_pPublicInterface->getHSelf(), TEXT("open"), url.c_str(), NULL, NULL, SW_SHOW);