From 07bcd9a157a35808668c0221fdb4b3cffbd793f4 Mon Sep 17 00:00:00 2001 From: molsonkiko <46202915+molsonkiko@users.noreply.github.com> Date: Tue, 6 Feb 2024 19:37:24 -0800 Subject: [PATCH] add link to user manual for NPPM_MODELESSDIALOG --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 87697e5..f892a62 100644 --- a/docs/README.md +++ b/docs/README.md @@ -87,7 +87,7 @@ This is all because I registered the controls in the form with the `KeyUp`, `Key You will notice that the DarkModeTestForm discussed below *does not have these nice responses to keys*, because I did not register those handlers for its controls. -## Registering and unregistering forms with `NPPM_MODELESSDIALOG` ## +## Registering and unregistering forms with [`NPPM_MODELESSDIALOG`](https://npp-user-manual.org/docs/plugin-communication/#2036-nppm-modelessdialog) ## Beginning in [v0.0.2](/CHANGELOG.md#002---2024-02-06), all modeless (that is, *not* pop-up) forms are registered in their initialization method with `NppFormHelper.RegisterFormIfModeless` and *unregistered* in their `Dispose` method (in `Designer.cs`) with `NppFormHelper.UnregisterFormIfModeless`.