To replicate the issue:
- Install NavigateTo 2.7.0 on Notepad++ 8.6.1 (32bit or 64bit, shouldn't matter).
- Copy some text to the clipboard (call this
Original selection)
- Open the NavigateTo window in any document.
- Select some text in the NavigateTo textbox (call this
NavigateTo selection)
- Copy the NavigateTo textbox selection using Ctrl+C.
- Observe that
Original selection is still in the clipboard.
- Cut the NavigateTo textbox selection using Ctrl+X.
- Observe that
Original selection is still in the clipboard.
- If desired, try doing similar things on the settings form. You should find that Ctrl+C and Ctrl+X are broken everywhere.
My proposed solution
You can fix this issue by following the process I describe in my NppCSharpPluginPack.
If you like, I can submit a PR. While this issue isn't hard to fix, it is annoying and finicky to fix because you have to visually compare the order of Controls.Add calls to the desired tab order for every form in your plugin.
To replicate the issue:
Original selection)NavigateTo selection)Original selectionis still in the clipboard.Original selectionis still in the clipboard.My proposed solution
You can fix this issue by following the process I describe in my NppCSharpPluginPack.
If you like, I can submit a PR. While this issue isn't hard to fix, it is annoying and finicky to fix because you have to visually compare the order of
Controls.Addcalls to the desired tab order for every form in your plugin.