From f74e4ae159fbc1c91b53a43b16e6144c9248d532 Mon Sep 17 00:00:00 2001 From: Udo Hoffmann Date: Sun, 9 Aug 2020 10:00:21 +0200 Subject: [PATCH] Fix URLs not underlined immediately after copy/paste Close #8685 --- PowerEditor/src/NppNotification.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/PowerEditor/src/NppNotification.cpp b/PowerEditor/src/NppNotification.cpp index 0de905389..cfc49fed9 100644 --- a/PowerEditor/src/NppNotification.cpp +++ b/PowerEditor/src/NppNotification.cpp @@ -88,6 +88,10 @@ BOOL Notepad_plus::notify(SCNotification *notification) prevWasEdit = false; } + if (notification->modificationType & SC_MOD_CHANGEINDICATOR) + { + ::InvalidateRect(notifyView->getHSelf(), NULL, FALSE); + } break; }