From 087430f8f1c95642a8baf90e2d0b62f6c8da1178 Mon Sep 17 00:00:00 2001 From: Don Ho Date: Sat, 10 Feb 2024 03:11:41 +0100 Subject: [PATCH] Fix regression of NPPM_RELOADFILE Regression is introduced by: https://github.com/notepad-plus-plus/notepad-plus-plus/commit/bb278b26fc9a772242e702d2fac40c18c6cc21b9 Fix #14693, close #14708 --- PowerEditor/src/NppBigSwitch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerEditor/src/NppBigSwitch.cpp b/PowerEditor/src/NppBigSwitch.cpp index b3ec925a4..bdf2651da 100644 --- a/PowerEditor/src/NppBigSwitch.cpp +++ b/PowerEditor/src/NppBigSwitch.cpp @@ -683,7 +683,7 @@ LRESULT Notepad_plus::process(HWND hwnd, UINT message, WPARAM wParam, LPARAM lPa if (id != BUFFER_INVALID) doReload(id, wParam != 0); - return TRUE; + break; // For relaying this message to other plugin by calling "_pluginsManager.relayNppMessages(message, wParam, lParam)" at the end. } case NPPM_SWITCHTOFILE :