From 0c8729f7fb5edfed1dd2641c6d205013b81753e7 Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Tue, 26 Sep 2023 20:16:20 +0800 Subject: [PATCH] Fix wrong doc --- Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs index 474ad6f0a..e6d9126c6 100644 --- a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs +++ b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs @@ -107,7 +107,7 @@ namespace Flow.Launcher.Plugin /// /// Message title /// Message subtitle - /// Message icon path (relative path to your plugin folder) + /// Full path to icon void ShowMsg(string title, string subTitle = "", string iconPath = ""); /// @@ -115,7 +115,7 @@ namespace Flow.Launcher.Plugin /// /// Message title /// Message subtitle - /// Message icon path (relative path to your plugin folder) + /// Full path to icon /// when true will use main windows as the owner void ShowMsg(string title, string subTitle, string iconPath, bool useMainWindowAsOwner = true);