Skip to content

Commit 5cf85b4

Browse files
committed
per comment
Add refer to logs message + warning icon
1 parent 9058afd commit 5cf85b4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Flow.Launcher.Core/Plugin/PluginsLoader.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Reflection;
66
using System.Runtime.Loader;
77
using System.Threading.Tasks;
8-
using System.Windows;
8+
using System.Windows.Forms;
99
using Flow.Launcher.Infrastructure;
1010
using Flow.Launcher.Infrastructure.Logger;
1111
using Flow.Launcher.Infrastructure.UserSettings;
@@ -117,7 +117,10 @@ public static IEnumerable<PluginPair> DotNetPlugins(List<PluginMetadata> source)
117117

118118
Task.Run(() =>
119119
{
120-
MessageBox.Show($"{errorMessage}{Environment.NewLine}{errorPluginString}");
120+
MessageBox.Show($"{errorMessage}{Environment.NewLine}{Environment.NewLine}" +
121+
$"{errorPluginString}{Environment.NewLine}{Environment.NewLine} " +
122+
$"Please refer to the logs for more information","",
123+
MessageBoxButtons.OK, MessageBoxIcon.Warning);
121124
});
122125
}
123126

0 commit comments

Comments
 (0)