We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0bab86 commit f69dd0fCopy full SHA for f69dd0f
Flow.Launcher.Plugin/IProgressBoxEx.cs
@@ -6,15 +6,15 @@
6
public interface IProgressBoxEx
7
{
8
/// <summary>
9
- /// Show progress box
+ /// Show progress box. It should be called from the main ui thread.
10
/// </summary>
11
/// <param name="progress">
12
/// Progress value. Should be between 0 and 100. When progress is 100, the progress box will be closed.
13
/// </param>
14
public void ReportProgress(double progress);
15
16
17
- /// Close progress box.
+ /// Close progress box. It should be called from the main ui thread.
18
19
public void Close();
20
}
0 commit comments