Change delete confirmation dialog from Yes/No to OK/Cancel

This commit is contained in:
DB P 2025-05-30 17:35:24 +09:00
parent d159adb849
commit abef617799

View file

@ -200,9 +200,9 @@ namespace Flow.Launcher.Plugin.Explorer
if (Context.API.ShowMsgBox(
string.Format(Context.API.GetTranslation("plugin_explorer_delete_folder_link"), record.FullPath),
Context.API.GetTranslation("plugin_explorer_deletefilefolder"),
MessageBoxButton.YesNo,
MessageBoxButton.OKCancel,
MessageBoxImage.Warning)
== MessageBoxResult.No)
== MessageBoxResult.Cancel)
return false;
if (isFile)