File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Flow.Launcher.Infrastructure/QuickSwitch Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,8 @@ private static bool RefreshLastExplorer()
273273 {
274274 foreach ( var explorer in _quickSwitchExplorers . Keys )
275275 {
276- if ( explorer . Metadata . Disabled ) continue ;
276+ if ( API . PluginModified ( explorer . Metadata . ID ) || // Plugin is modified
277+ explorer . Metadata . Disabled ) continue ; // Plugin is disabled
277278
278279 var explorerWindow = explorer . Plugin . CheckExplorerWindow ( hWnd ) ;
279280 if ( explorerWindow != null )
@@ -532,7 +533,8 @@ uint dwmsEventTime
532533 {
533534 foreach ( var explorer in _quickSwitchExplorers . Keys )
534535 {
535- if ( explorer . Metadata . Disabled ) continue ;
536+ if ( API . PluginModified ( explorer . Metadata . ID ) || // Plugin is modified
537+ explorer . Metadata . Disabled ) continue ; // Plugin is disabled
536538
537539 var explorerWindow = explorer . Plugin . CheckExplorerWindow ( hwnd ) ;
538540 if ( explorerWindow != null )
You can’t perform that action at this time.
0 commit comments