From 2a24867e98757f44600e17003fb381911ef6beda Mon Sep 17 00:00:00 2001 From: Don Ho Date: Sat, 29 Mar 2025 16:56:44 +0100 Subject: [PATCH] Fix an easter egg not showing issue Fix #15170, close #16341 --- PowerEditor/src/NppCommands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerEditor/src/NppCommands.cpp b/PowerEditor/src/NppCommands.cpp index b06708e60..c585c318d 100644 --- a/PowerEditor/src/NppCommands.cpp +++ b/PowerEditor/src/NppCommands.cpp @@ -3420,7 +3420,7 @@ void Notepad_plus::command(int id) case IDM_ABOUT: { bool doAboutDlg = false; - const int maxSelLen = 32; + const int maxSelLen = 64; auto textLen = _pEditView->execute(SCI_GETSELTEXT, 0, 0); if (textLen <= 0) doAboutDlg = true;