From 509197b845e5bc37acacdd95b3b5db78bb7fd924 Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Tue, 14 Jan 2025 12:26:51 +0100 Subject: [PATCH] background_processes.md: Link UX --- topics/basics/architectural_overview/background_processes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/basics/architectural_overview/background_processes.md b/topics/basics/architectural_overview/background_processes.md index 0bc7c59de..3ec774285 100644 --- a/topics/basics/architectural_overview/background_processes.md +++ b/topics/basics/architectural_overview/background_processes.md @@ -79,7 +79,7 @@ new Task.Backgroundable(project, "Synchronizing data", true) { > .runProcessWithProgressAsynchronously( > backgroundableTask, EmptyProgressIndicator()) > ``` -> Note that hiding progress from users should be avoided as it may break the UX. +> Note that hiding progress from users should be avoided as it may break the [UX](plugin_user_experience.md). `ProgressManager` also allows running `Runnable` and `Computable` instances not wrapped within `Task` with several `run*()` methods. Example: