From f69dd0f15572d1135ac753563d8f3ecb9ab40dcf Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Sun, 5 Jan 2025 00:13:32 +0800 Subject: [PATCH] Improve documents --- Flow.Launcher.Plugin/IProgressBoxEx.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Plugin/IProgressBoxEx.cs b/Flow.Launcher.Plugin/IProgressBoxEx.cs index 0b245411f..6468e3c83 100644 --- a/Flow.Launcher.Plugin/IProgressBoxEx.cs +++ b/Flow.Launcher.Plugin/IProgressBoxEx.cs @@ -6,7 +6,7 @@ public interface IProgressBoxEx { /// - /// Show progress box + /// Show progress box. It should be called from the main ui thread. /// /// /// Progress value. Should be between 0 and 100. When progress is 100, the progress box will be closed. @@ -14,7 +14,7 @@ public interface IProgressBoxEx public void ReportProgress(double progress); /// - /// Close progress box. + /// Close progress box. It should be called from the main ui thread. /// public void Close(); }