From ce0247823a5eee9d5416253befb4e0dfe7f7e1f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Thu, 5 May 2022 10:36:34 +0200 Subject: [PATCH] tool_windows.md: add link --- topics/user_interface_components/tool_windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/user_interface_components/tool_windows.md b/topics/user_interface_components/tool_windows.md index cb4389a00..2f6810118 100644 --- a/topics/user_interface_components/tool_windows.md +++ b/topics/user_interface_components/tool_windows.md @@ -15,7 +15,7 @@ There are two main scenarios for the use of tool windows in a plugin. Using [declarative setup](#declarative-setup), a tool window button is always visible, and the user can activate it and interact with the plugin functionality at any time. Alternatively, using [programmatic setup](#programmatic-setup), the tool window is created to show the results of a specific operation, and can be closed by the user after the operation is completed. -Project-level topic [`ToolWindowManagerListener`](upsource:///platform/platform-impl/src/com/intellij/openapi/wm/ex/ToolWindowManagerListener.java) allows listening to tool window (un-)registering/show events. +Project-level topic [`ToolWindowManagerListener`](upsource:///platform/platform-impl/src/com/intellij/openapi/wm/ex/ToolWindowManagerListener.java) allows listening to tool window (un-)registering/show events (see [](plugin_listeners.md)). ### Declarative Setup