Skip to content

Commit b8a697c

Browse files
committed
Fix running issue
1 parent 13b5012 commit b8a697c

File tree

1 file changed

+2
-2
lines changed
  • Plugins/Flow.Launcher.Plugin.Shell

1 file changed

+2
-2
lines changed

Plugins/Flow.Launcher.Plugin.Shell/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ public void Init(PluginInitContext context)
500500
context.API.RegisterGlobalKeyboardCallback(API_GlobalKeyboardEvent);
501501

502502
// Search for all folders with Microsoft.WindowsTerminal_ prefix
503-
var windowsAppsPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), "WindowsApps");
503+
/*var windowsAppsPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), "WindowsApps");
504504
var windowsTerminalFolders = Directory.EnumerateDirectories(windowsAppsPath, "Microsoft.WindowsTerminal_*",
505505
SearchOption.TopDirectoryOnly);
506506
@@ -512,7 +512,7 @@ public void Init(PluginInitContext context)
512512
{
513513
possibleWindowsTerminalPaths.Insert(0, windowsTerminalPath);
514514
}
515-
}
515+
}*/
516516
}
517517

518518
bool API_GlobalKeyboardEvent(int keyevent, int vkcode, SpecialKeyState state)

0 commit comments

Comments
 (0)