Improve setting dialog command

This commit is contained in:
Jack251970 2025-07-20 09:35:29 +08:00
parent d3824f274d
commit 9f63291fda

View file

@ -404,6 +404,8 @@ namespace Flow.Launcher.Plugin.Sys
IcoPath = "Images\\app.png",
Action = c =>
{
// Hide the window first then open setting dialog because main window can be topmost window which will still display on top of the setting dialog for a while
_context.API.HideMainWindow();
_context.API.OpenSettingDialog();
return true;
}