File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Plugins/Flow.Launcher.Plugin.PluginsManager Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,10 @@ internal async Task InstallOrUpdate(UserPlugin plugin)
120
120
. ChangeQuery (
121
121
$ "{ Context . CurrentPluginMetadata . ActionKeywords . FirstOrDefault ( ) } { Settings . HotkeyUpdate } { plugin . Name } ") ;
122
122
123
- Application . Current . MainWindow . Show ( ) ;
123
+ var mainWindow = Application . Current . MainWindow ;
124
+ mainWindow . Visibility = Visibility . Visible ;
125
+ mainWindow . Focus ( ) ;
126
+
124
127
shouldHideWindow = false ;
125
128
126
129
return ;
Original file line number Diff line number Diff line change 6
6
"Name" : " Plugins Manager" ,
7
7
"Description" : " Management of installing, uninstalling or updating Flow Launcher plugins" ,
8
8
"Author" : " Jeremy Wu" ,
9
- "Version" : " 1.8.4 " ,
9
+ "Version" : " 1.8.5 " ,
10
10
"Language" : " csharp" ,
11
11
"Website" : " https://github.com/Flow-Launcher/Flow.Launcher" ,
12
12
"ExecuteFileName" : " Flow.Launcher.Plugin.PluginsManager.dll" ,
You can’t perform that action at this time.
0 commit comments