File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Flow.Launcher.Core/Plugin Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 5
5
using System . Reflection ;
6
6
using System . Runtime . Loader ;
7
7
using System . Threading . Tasks ;
8
- using System . Windows ;
8
+ using System . Windows . Forms ;
9
9
using Flow . Launcher . Infrastructure ;
10
10
using Flow . Launcher . Infrastructure . Logger ;
11
11
using Flow . Launcher . Infrastructure . UserSettings ;
@@ -117,7 +117,10 @@ public static IEnumerable<PluginPair> DotNetPlugins(List<PluginMetadata> source)
117
117
118
118
Task . Run ( ( ) =>
119
119
{
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 ) ;
121
124
} ) ;
122
125
}
123
126
You can’t perform that action at this time.
0 commit comments